mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
283 B
Rust
13 lines
283 B
Rust
//@ edition:2018
|
|
|
|
#![deny(unused_unsafe)]
|
|
|
|
fn main() {
|
|
let _ = async {
|
|
unsafe { async {}.await; } //~ ERROR unnecessary `unsafe`
|
|
};
|
|
|
|
// `format_args!` expands with a compiler-generated unsafe block
|
|
unsafe { println!("foo"); } //~ ERROR unnecessary `unsafe`
|
|
}
|