mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 08:46:27 +00:00
13 lines
258 B
Rust
13 lines
258 B
Rust
#![feature(c_unwind, const_extern_fn)]
|
|
|
|
const extern "C" fn foo() {
|
|
panic!() //~ ERROR evaluation of constant value failed
|
|
}
|
|
|
|
const _: () = foo();
|
|
// Ensure that the CTFE engine handles calls to `extern "C"` aborting gracefully
|
|
|
|
fn main() {
|
|
foo();
|
|
}
|