rust/tests/ui/linkage-attr/auxiliary/def_external.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
95 B
Rust
Raw Normal View History

2019-05-24 08:13:16 -05:00
#![feature(linkage)]
#![crate_type = "lib"]
#[linkage="external"]
pub static EXTERN: u32 = 0;