summary refs log tree commit diff
path: root/src/test/ui/panic-handler/weak-lang-item.rs
blob: 3fa3822831b5275b54d7e43df427a68f04a2d825 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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`
// ignore-emscripten compiled with panic=abort, personality not required

#![no_std]

extern crate core;
extern crate weak_lang_items;

fn main() {}