9 lines
105 B
Rust
9 lines
105 B
Rust
|
struct Foo {
|
||
|
new: int,
|
||
|
}
|
||
|
|
||
|
pub fn main() {
|
||
|
let foo = Foo{ new: 3 };
|
||
|
assert_eq!(foo.new, 3);
|
||
|
}
|