]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/auxiliary/issue-9906.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / issues / auxiliary / issue-9906.rs
1 pub use other::FooBar;
2 pub use other::foo;
3
4 mod other {
5 pub struct FooBar{value: isize}
6 impl FooBar{
7 pub fn new(val: isize) -> FooBar {
8 FooBar{value: val}
9 }
10 }
11
12 pub fn foo(){
13 1+1;
14 }
15 }