rust/tests/target/struct_lits.rs

25 lines
963 B
Rust
Raw Normal View History

2015-05-25 02:11:53 -05:00
// Struct literal expressions.
fn main() {
let x = Bar;
// Comment
let y = Foo { a: x };
Foo { a: Bar, b: foo() };
Foo { a: foo(), b: bar(), ..something };
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(), b: bar() };
Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(),
b: bar(), };
Fooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(),
b: bar(),
c: bar(),
d: bar(),
e: bar(),
f: bar(),
..baz() };
}