]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0522.rs
Merge commit '5ff7b632a95bac6955611d85040859128902c580' into sync-rustfmt-subtree
[rust.git] / src / test / ui / error-codes / E0522.rs
1 #![feature(lang_items)]
2
3 #[lang = "cookie"]
4 fn cookie() -> ! {
5 //~^^ ERROR definition of an unknown language item: `cookie` [E0522]
6     loop {}
7 }
8
9 fn main() {}