]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-language-item.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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() {}