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

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

8 lines
126 B
Rust
Raw Normal View History

#![feature(linkage)]
#![crate_type = "lib"]
2020-09-01 16:12:52 -05:00
extern "C" {
#[linkage = "external"]
pub static collision: *const i32;
}