mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
313 B
Rust
17 lines
313 B
Rust
//@ edition: 2024
|
|
//@ compile-flags: -Zunstable-options
|
|
//@ check-pass
|
|
#![crate_type = "lib"]
|
|
#![deny(unused_unsafe)]
|
|
|
|
unsafe fn unsf() {}
|
|
|
|
unsafe fn foo() {
|
|
unsf();
|
|
//~^ WARN call to unsafe function `unsf` is unsafe and requires unsafe block
|
|
|
|
// no unused_unsafe
|
|
unsafe {
|
|
unsf();
|
|
}
|
|
}
|