1 2 3 4 5 6 7 8
#![feature(lang_items)] extern "C" { #[lang = "cake"] fn cake(); //~ ERROR E0264 } fn main() {}