mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
340 B
Rust
17 lines
340 B
Rust
// check-pass
|
|
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
#![warn(unused_unsafe)]
|
|
#![feature(inline_const)]
|
|
const unsafe fn require_unsafe() -> usize { 1 }
|
|
|
|
fn main() {
|
|
unsafe {
|
|
const {
|
|
require_unsafe();
|
|
unsafe {}
|
|
//~^ WARNING unnecessary `unsafe` block
|
|
}
|
|
}
|
|
}
|