]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-7607-2.rs
Auto merge of #107044 - cuviper:more-llvm-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / issues / issue-7607-2.rs
1 // check-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 pub mod a {
6     pub struct Foo { a: usize }
7 }
8
9 pub mod b {
10     use a::Foo;
11     impl Foo {
12         fn bar(&self) { }
13     }
14 }
15
16 pub fn main() { }