rust/tests/target/struct_lits.rs

51 lines
2.7 KiB
Rust
Raw Normal View History

2015-05-25 09:11:53 +02:00
// Struct literal expressions.
fn main() {
let x = Bar;
// Comment
let y = Foo { a: x };
2015-06-24 21:14:08 +02:00
Foo { a: foo(), // comment
// comment
b: bar(),
..something };
2015-05-25 09:11:53 +02:00
Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(),
b: bar(), };
2015-06-24 21:14:08 +02:00
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { // Comment
a: foo(), /* C
* o
* m
* m
* e
* n
* t */
// Comment
b: bar(), /* C
* o
* m
* m
* e
* n
* t */ };
Foo { a: Bar, b: foo() };
A { // Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit
// amet ipsum mauris. Maecenas congue ligula ac quam viverra nec consectetur ante
// hendrerit. Donec et mollis dolor.
first: item(),
// Praesent et diam eget libero egestas mattis sit amet vitae augue.
// Nam tincidunt congue enim, ut porta lorem lacinia consectetur.
second: Item, };
Diagram { // o This graph demonstrates how
// / \ significant whitespace is
// o o preserved.
// /|\ \
// o o o o
graph: G, }
2015-05-25 09:11:53 +02:00
}