mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
473 B
Rust
23 lines
473 B
Rust
// ignore-test This is currently broken
|
|
// check-pass
|
|
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
#![allow(incomplete_features)]
|
|
#![warn(unused_unsafe)]
|
|
#![feature(inline_const_pat)]
|
|
|
|
const unsafe fn require_unsafe() -> usize { 1 }
|
|
|
|
fn main() {
|
|
unsafe {
|
|
match () {
|
|
const {
|
|
require_unsafe();
|
|
unsafe {}
|
|
//~^ WARNING unnecessary `unsafe` block
|
|
} => (),
|
|
}
|
|
}
|
|
}
|