mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
345 B
Rust
18 lines
345 B
Rust
// 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]
|
|
} => (),
|
|
}
|
|
}
|