mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
239 B
Rust
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;
|
|
}
|
|
}
|