summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs
blob: afe645ae8815c69be70f111f3c91b5f9034cbc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck

#![feature(const_extern_fn)]

const unsafe extern "C" fn foo() -> usize { 5 }

fn main() {
    let a: [u8; foo()];
    //[mir]~^ call to unsafe function is unsafe and requires unsafe function or block
    //[thir]~^^ call to unsafe function `foo` is unsafe and requires unsafe function or block
    foo();
    //[mir]~^ ERROR call to unsafe function is unsafe and requires unsafe function or block
}