blob: ab6a31673cc0c800c8412a7fc6e066c11312497a [file] [log] [blame] [edit]
#![feature(extern_item_impls)]
#[eii(foo)]
fn x();
#[foo]
fn y(a: u64) -> u64 {
//~^ ERROR E0806
a
}
fn main() {}