4457d2b379
remove code for parsing ancient syntax added a run-pass test
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);
|
|
}
|