rustc/tests/ui/panic-handler/weak-lang-item.rs
2024-06-19 10:24:51 +02:00

13 lines
350 B
Rust

// aux-build:weak-lang-items.rs
// error-pattern: `#[panic_handler]` function required, but not found
// error-pattern: unwinding panics are not supported without std
// needs-unwind since it affects the error output
// ignore-emscripten missing eh_catch_typeinfo lang item
#![no_std]
extern crate core;
extern crate weak_lang_items;
fn main() {}