2017-01-15 22:58:51 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2015-10-17 08:56:53 -05:00
|
|
|
fn main() {
|
|
|
|
let z = match x {
|
|
|
|
"pat1" => 1,
|
|
|
|
(ref x, ref mut y /* comment */) => 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
if let <T as Trait>::CONST = ident {
|
|
|
|
do_smth();
|
|
|
|
}
|
|
|
|
|
|
|
|
let Some(ref xyz /* comment! */) = opt;
|
|
|
|
|
|
|
|
if let None = opt2 {
|
|
|
|
panic!("oh noes");
|
|
|
|
}
|
2016-02-11 19:59:13 -06:00
|
|
|
|
|
|
|
let foo @ bar(f) = 42;
|
|
|
|
let a::foo(..) = 42;
|
|
|
|
let [] = 42;
|
|
|
|
let [a.., b, c] = 42;
|
|
|
|
let [a, b, c..] = 42;
|
|
|
|
let [a, b, c, d.., e, f, g] = 42;
|
|
|
|
let foo {} = 42;
|
|
|
|
let foo { .. } = 42;
|
|
|
|
let foo { x, y: ref foo, .. } = 42;
|
2017-03-21 15:05:50 -05:00
|
|
|
let foo {
|
|
|
|
x,
|
|
|
|
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy: ref foo,
|
|
|
|
..
|
|
|
|
} = 42;
|
|
|
|
let foo {
|
|
|
|
x,
|
|
|
|
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy: ref foo,
|
|
|
|
} = 42;
|
|
|
|
let foo {
|
|
|
|
x,
|
|
|
|
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy: ref foo,
|
|
|
|
..
|
|
|
|
};
|
|
|
|
let foo {
|
|
|
|
x,
|
|
|
|
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy: ref foo,
|
|
|
|
};
|
2015-10-17 08:56:53 -05:00
|
|
|
}
|
2015-10-23 13:44:46 -05:00
|
|
|
|
2015-11-22 17:02:54 -06:00
|
|
|
impl<'a, 'b> ResolveGeneratedContentFragmentMutator<'a, 'b> {
|
2015-10-23 13:44:46 -05:00
|
|
|
fn mutate_fragment(&mut self, fragment: &mut Fragment) {
|
|
|
|
match **info {
|
2017-11-29 02:37:56 -06:00
|
|
|
GeneratedContentInfo::ContentItem(ContentItem::Counter(
|
|
|
|
ref counter_name,
|
|
|
|
counter_style,
|
|
|
|
)) => {}
|
2015-10-23 13:44:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-08 20:49:58 -06:00
|
|
|
|
|
|
|
fn issue_1319() {
|
|
|
|
if let (Event { .. }, ..) = ev_state {}
|
|
|
|
}
|
2017-08-12 01:59:35 -05:00
|
|
|
|
|
|
|
fn issue_1874() {
|
|
|
|
if let Some(()) = x {
|
|
|
|
y
|
|
|
|
}
|
|
|
|
}
|
2017-11-02 06:28:38 -05:00
|
|
|
|
|
|
|
fn combine_patterns() {
|
|
|
|
let x = match y {
|
|
|
|
Some(Some(Foo {
|
|
|
|
z: Bar(..),
|
|
|
|
a: Bar(..),
|
|
|
|
b: Bar(..),
|
|
|
|
})) => z,
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
}
|
2018-08-12 09:55:34 -05:00
|
|
|
|
|
|
|
fn slice_patterns() {
|
|
|
|
match b"123" {
|
|
|
|
[0, ..] => {}
|
|
|
|
[0, foo..] => {}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|