blob: 8a3eea790a26ace46469d43c3bc5d30c587eeb09 [file] [log] [blame]
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;
}
}