]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-62649-path-collisions-happen.rs
Rollup merge of #99987 - Alexendoo:parse-format-position-span, r=fee1-dead
[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() {}