]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/weak-lang-item.rs
Rollup merge of #69346 - GuillaumeGomez:clean-up-e032x-explanations, r=Dylan-DPC
[rust.git] / src / test / compile-fail / weak-lang-item.rs
1 // aux-build:weak-lang-items.rs
2 // error-pattern: `#[panic_handler]` function required, but not found
3 // error-pattern: language item required, but not found: `eh_personality`
4 // ignore-emscripten compiled with panic=abort, personality not required
5
6 #![no_std]
7
8 extern crate core;
9 extern crate weak_lang_items;
10
11 fn main() {}