rust/tests/target/struct_lits.rs

74 lines
1.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 };
Foo {
a: foo(), // comment
// comment
b: bar(),
..something
};
2015-07-16 04:03:52 +02:00
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(), b: bar() };
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo {
a: foo(),
b: bar(),
};
2015-05-25 09:11:53 +02:00
2015-07-16 04:03:52 +02:00
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo {
// Comment
a: foo(), // Comment
// Comment
2015-07-16 04:03:52 +02:00
b: bar(), /* Comment */
};
2015-06-24 21:14:08 +02:00
Foo { a: Bar, b: foo() };
2015-07-20 23:29:25 +02:00
Quux {
x: if cond {
bar();
},
y: baz(),
};
2015-07-16 04:03:52 +02:00
A {
2015-07-20 23:29:25 +02:00
// 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
2015-06-24 21:14:08 +02:00
// 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,
};
2015-06-24 21:14:08 +02:00
2015-07-16 04:03:52 +02:00
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
}
2015-07-20 23:29:25 +02:00
fn matcher() {
TagTerminatedByteMatcher {
matcher: ByteMatcher {
pattern: b"<HTML",
mask: b"\xFF\xDF\xDF\xDF\xDF\xFF",
},
};
}
2015-08-14 14:09:19 +02:00
fn issue177() {
struct Foo<T> {
memb: T,
}
let foo = Foo::<i64> { memb: 10 };
}