mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
346 B
Rust
15 lines
346 B
Rust
// edition:2018
|
|
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
#![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`
|
|
}
|