2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:weak-lang-items.rs
|
|
|
|
|
//@ needs-unwind since it affects the error output
|
|
|
|
|
//@ ignore-emscripten missing eh_catch_typeinfo lang item
|
2014-05-19 09:30:09 -07:00
|
|
|
|
|
|
|
|
#![no_std]
|
|
|
|
|
|
2025-03-29 02:41:32 +03:00
|
|
|
extern crate core; //~ ERROR the name `core` is defined multiple times
|
2015-03-27 10:22:44 -07:00
|
|
|
extern crate weak_lang_items;
|
2017-08-31 09:19:33 -07:00
|
|
|
|
|
|
|
|
fn main() {}
|
2025-03-29 02:41:32 +03:00
|
|
|
|
|
|
|
|
//~? ERROR `#[panic_handler]` function required, but not found
|
|
|
|
|
//~? ERROR unwinding panics are not supported without std
|