mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:46:18 +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();
|
|
}
|