2024-02-22 12:10:29 +00:00
|
|
|
//@ no-prefer-dynamic
|
|
|
|
|
//@ compile-flags: -Z query-dep-graph
|
2016-07-25 10:51:14 -04:00
|
|
|
|
|
|
|
|
#![crate_type="rlib"]
|
|
|
|
|
|
|
|
|
|
#[cfg(rpass1)]
|
|
|
|
|
pub type X = u32;
|
|
|
|
|
|
|
|
|
|
#[cfg(rpass2)]
|
|
|
|
|
pub type X = i32;
|
|
|
|
|
|
|
|
|
|
// this version doesn't actually change anything:
|
|
|
|
|
#[cfg(rpass3)]
|
|
|
|
|
pub type X = i32;
|
|
|
|
|
|
|
|
|
|
pub type Y = char;
|