mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
321 B
Rust
17 lines
321 B
Rust
// run-fail
|
|
// error-pattern:stop
|
|
// ignore-emscripten no processes
|
|
|
|
// #18576
|
|
// Make sure that calling an extern function pointer in an unreachable
|
|
// context doesn't cause an LLVM assertion
|
|
|
|
#[allow(unreachable_code)]
|
|
fn main() {
|
|
panic!("stop");
|
|
let pointer = other;
|
|
pointer();
|
|
}
|
|
|
|
extern "C" fn other() {}
|