mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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() {}
|