blob: f9de906ac267e93411ccf390098c8aae9f490b82 [file]
//@ aux-build: decl_with_default.rs
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// FIXME: linking on windows (specifically mingw) not yet supported, see tracking issue #125418
//@ ignore-windows
// FIXME(#157649): static EII defaults currently fail to link on Apple targets.
//@ ignore-apple
// Tests that a static EII default can be used from another crate.
extern crate decl_with_default;
fn main() {
println!("{}", decl_with_default::DECL1);
}