summary refs log tree commit diff
path: root/tests/ui/panic-handler/weak-lang-item.rs
blob: 605e1bdd94b7fbcb16c29f993e0705d6b621d931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ 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() {}