summaryrefslogtreecommitdiffstats
path: root/tests/incremental/type_alias_cross_crate/auxiliary/a.rs
blob: 61fe297d73dd6e3851a0254eedd3ea9343b5f930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// compile-flags: -Z query-dep-graph

#![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;