rust/src/test/run-pass/common-fields-trivial.rs

15 lines
128 B
Rust
Raw Normal View History

2012-08-08 21:51:19 -05:00
enum Foo {
struct {
x: int,
y: int,
2012-08-08 21:51:19 -05:00
}
Bar(int),
Baz(int)
}
fn main() {
let x = Bar(3);
}