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

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

18 lines
345 B
Rust
Raw Normal View History

// ignore-test This is currently broken
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
#![allow(incomplete_features)]
#![feature(inline_const_pat)]
const unsafe fn require_unsafe() -> usize { 1 }
fn main() {
match () {
const {
require_unsafe();
//~^ ERROR [E0133]
} => (),
}
}