blob: 20ffef71497c02db63932119c8f0c58c966aad75 [file] [log] [blame]
#![allow(unused)]
#![feature(lang_items)]
#[lang = "foo"]
fn bar() -> ! {
//~^^ ERROR definition of an unknown language item: `foo`
loop {}
}
fn main() {}