rust/tests/ui/issues/auxiliary/issue-9906.rs
2023-01-11 09:32:08 +00:00

16 lines
239 B
Rust

pub use other::FooBar;
pub use other::foo;
mod other {
pub struct FooBar{value: isize}
impl FooBar{
pub fn new(val: isize) -> FooBar {
FooBar{value: val}
}
}
pub fn foo(){
1+1;
}
}