blob: f70ece554a09683dec5c6af54d621795adbc8d3a [file] [log] [blame] [edit]
#![crate_type = "rlib"]
#[eii] //~ ERROR use of unstable library feature `extern_item_impls`
fn hello(x: u64);
#[hello]
fn hello_impl(x: u64) {
println!("{x:?}")
}