mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
359 B
Rust
13 lines
359 B
Rust
// aux-build:weak-lang-items.rs
|
|
// error-pattern: `#[panic_handler]` function required, but not found
|
|
// error-pattern: language item required, but not found: `eh_personality`
|
|
// 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() {}
|