]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-language-item.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / unknown-language-item.rs
1 #![allow(unused)]
2 #![feature(lang_items)]
3
4 #[lang = "foo"]
5 fn bar() -> ! {
6 //~^^ ERROR definition of an unknown language item: `foo`
7     loop {}
8 }
9
10 fn main() {}