rust/tests/ui/error-codes/E0264.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
106 B
Rust
Raw Normal View History

2016-08-05 11:17:39 +00:00
#![feature(lang_items)]
extern "C" {
#[lang = "cake"]
fn cake(); //~ ERROR E0264
}
fn main() {}