]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7607-2.rs
Auto merge of #104013 - notriddle:notriddle/rustdoc-sizeof, r=GuillaumeGomez
[rust.git] / src / test / 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() { }