10 lines
103 B
Rust
10 lines
103 B
Rust
|
#[crate_type="lib"];
|
||
|
|
||
|
pub struct Foo {
|
||
|
x: int
|
||
|
}
|
||
|
|
||
|
impl Foo {
|
||
|
fn new() -> Foo { Foo { x: 1 } }
|
||
|
}
|