rust/src/test/ui/unsafe/unsafe-around-compiler-generated-unsafe.rs

12 lines
213 B
Rust
Raw Normal View History

// edition:2018
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
#![deny(unused_unsafe)]
fn main() {
let _ = async {
unsafe { async {}.await; } //~ ERROR unnecessary `unsafe`
};
}