mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
12 lines
205 B
Rust
12 lines
205 B
Rust
|
// no-prefer-dynamic
|
||
|
// compile-flags: -Z thinlto -C codegen-units=8 -C prefer-dynamic
|
||
|
|
||
|
#![crate_type = "rlib"]
|
||
|
#![crate_type = "dylib"]
|
||
|
|
||
|
pub static A: u32 = 43;
|
||
|
|
||
|
pub mod a {
|
||
|
pub static A: u32 = 43;
|
||
|
}
|