mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
158 B
Rust
15 lines
158 B
Rust
//@ check-pass
|
|
|
|
// We don't unwind in const-eval anyways.
|
|
const extern "C" fn foo() {
|
|
panic!()
|
|
}
|
|
|
|
const fn bar() {
|
|
foo();
|
|
}
|
|
|
|
fn main() {
|
|
bar();
|
|
}
|