]> git.lizzy.rs Git - rust.git/blob - tests/incremental/issue-62649-path-collisions-happen.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / 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() {}