]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-62649-path-collisions-happen.rs
Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into sync_cg_gcc-2022-03-26
[rust.git] / src / test / incremental / issue-62649-path-collisions-happen.rs
1 // revisions: rpass1 rpass2
2
3 #[cfg(rpass1)]
4 pub trait Something {
5     fn foo();
6 }
7
8 #[cfg(rpass2)]
9 pub struct Something {
10     pub foo: u8,
11 }
12
13 fn main() {}