blob: 826e7d7a7847341184d02c5ed4c55d9707a3ad9d [file] [edit]
//@ ignore-apple
// `#[track_caller]` is only valid on functions, not on EII (foreign) statics.
#![feature(extern_item_impls)]
#[track_caller] //~ ERROR the `track_caller` attribute cannot be used on foreign statics
#[eii(sfoo)]
static FOO: u64 = 42;
fn main() {
println!("{FOO}");
}