11 lines
121 B
Rust
11 lines
121 B
Rust
//@ run-pass
|
|
|
|
struct Foo {
|
|
new: isize,
|
|
}
|
|
|
|
pub fn main() {
|
|
let foo = Foo{ new: 3 };
|
|
assert_eq!(foo.new, 3);
|
|
}
|