blob: 9b00dcf1943874e6eede0a8851e1d8bb188a6cf9 [file] [edit]
//@ ignore-backends: gcc
// FIXME(#125418): linking on Windows GNU targets is not yet supported.
//@ ignore-windows-gnu
// Tests whether EIIs work on statics
#![feature(extern_item_impls)]
#[eii]
//~^ ERROR `#[eii]` requires the name as an explicit argument when used on a static
static HELLO: u64;
fn main() { }