]> git.lizzy.rs Git - rust.git/blob - tests/incremental/rlib_cross_crate/auxiliary/a.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / incremental / rlib_cross_crate / auxiliary / a.rs
1 // no-prefer-dynamic
2 // compile-flags: -Z query-dep-graph
3
4 #![crate_type="rlib"]
5
6 #[cfg(rpass1)]
7 pub type X = u32;
8
9 #[cfg(rpass2)]
10 pub type X = i32;
11
12 // this version doesn't actually change anything:
13 #[cfg(rpass3)]
14 pub type X = i32;
15
16 pub type Y = char;