mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +00:00
13 lines
282 B
Rust
13 lines
282 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`
|
|
}
|