2018-12-25 21:08:33 -07:00

9 lines
106 B
Rust

#![feature(lang_items)]
extern "C" {
#[lang = "cake"]
fn cake(); //~ ERROR E0264
}
fn main() {}