mirror of https://github.com/rust-lang/rust
19 lines
557 B
Rust
19 lines
557 B
Rust
const unsafe extern "C" fn foo() -> usize {
|
|
5
|
|
}
|
|
|
|
const unsafe extern "C-unwind" fn bar() -> usize {
|
|
5
|
|
}
|
|
|
|
fn main() {
|
|
let a: [u8; foo()];
|
|
//~^ call to unsafe function `foo` is unsafe and requires unsafe function or block
|
|
foo();
|
|
//~^ ERROR call to unsafe function `foo` is unsafe and requires unsafe function or block
|
|
let b: [u8; bar()];
|
|
//~^ call to unsafe function `bar` is unsafe and requires unsafe function or block
|
|
bar();
|
|
//~^ ERROR call to unsafe function `bar` is unsafe and requires unsafe function or block
|
|
}
|