mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
|
//@ known-bug: #109681
|
||
|
|
||
|
#![crate_type="lib"]
|
||
|
#![feature(linkage)]
|
||
|
|
||
|
#[linkage = "common"]
|
||
|
pub static TEST3: bool = true;
|
||
|
|
||
|
fn main() {}
|