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

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

12 lines
224 B
Rust
Raw Normal View History

2022-12-01 13:13:18 -06:00
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
#![feature(inline_const)]
const unsafe fn require_unsafe() -> usize { 1 }
fn main() {
const {
require_unsafe();
//~^ ERROR [E0133]
}
}