11 lines
105 B
Rust
11 lines
105 B
Rust
|
pub struct Foo {
|
||
|
x: int
|
||
|
}
|
||
|
|
||
|
pub impl Foo {
|
||
|
static fn new() -> Foo {
|
||
|
Foo { x: 3 }
|
||
|
}
|
||
|
}
|
||
|
|