rust/tests/ui/inline-const/expr-unsafe.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
253 B
Rust
Raw Normal View History

2022-12-01 13:13:18 -06:00
//@ check-pass
2022-12-01 13:13:18 -06:00
#![warn(unused_unsafe)]
2024-04-19 10:54:41 -05:00
2022-12-01 13:13:18 -06:00
const unsafe fn require_unsafe() -> usize { 1 }
fn main() {
unsafe {
const {
require_unsafe();
unsafe {}
//~^ WARNING unnecessary `unsafe` block
}
}
}