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-02 03:13:18 +08:00
//@ check-pass
2022-12-02 03:13:18 +08:00
#![warn(unused_unsafe)]
2024-04-19 23:54:41 +08:00
2022-12-02 03:13:18 +08:00
const unsafe fn require_unsafe() -> usize { 1 }
fn main() {
unsafe {
const {
require_unsafe();
unsafe {}
//~^ WARNING unnecessary `unsafe` block
}
}
}