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