mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 10:29:16 +00:00
10 lines
156 B
Rust
10 lines
156 B
Rust
#![feature(lang_items)]
|
|
|
|
#[lang = "cookie"]
|
|
fn cookie() -> ! {
|
|
//~^^ ERROR definition of an unknown lang item: `cookie` [E0522]
|
|
loop {}
|
|
}
|
|
|
|
fn main() {}
|