2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2016-09-01 13:52:33 -05:00
|
|
|
// ignore-windows
|
|
|
|
// ignore-macos
|
2019-10-05 23:38:45 -05:00
|
|
|
// ignore-wasm32-bare common linkage not implemented right now
|
2016-09-01 13:52:33 -05:00
|
|
|
|
|
|
|
#![feature(linkage)]
|
|
|
|
|
|
|
|
#[linkage = "common"]
|
|
|
|
pub static mut TEST1: u32 = 0u32;
|
|
|
|
|
|
|
|
#[linkage = "external"]
|
|
|
|
pub static TEST2: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "internal"]
|
|
|
|
pub static TEST3: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "linkonce"]
|
|
|
|
pub static TEST4: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "linkonce_odr"]
|
|
|
|
pub static TEST5: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "private"]
|
|
|
|
pub static TEST6: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "weak"]
|
|
|
|
pub static TEST7: bool = true;
|
|
|
|
|
|
|
|
#[linkage = "weak_odr"]
|
|
|
|
pub static TEST8: bool = true;
|
|
|
|
|
2017-12-29 12:25:40 -06:00
|
|
|
fn main() {}
|