]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-62649-path-collisions-happen.rs
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[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() {}