mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +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`
|
|
}
|