2019-12-21 22:59:38 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(nonstandard_style, unused_variables, unused_mut)]
|
2014-10-06 00:36:53 +00:00
|
|
|
#![deny(non_shorthand_field_patterns)]
|
|
|
|
|
|
|
|
struct Foo {
|
2015-01-08 10:54:35 +00:00
|
|
|
x: isize,
|
|
|
|
y: isize,
|
2014-10-06 00:36:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
{
|
|
|
|
let Foo {
|
|
|
|
x: x, //~ ERROR the `x:` in this pattern is redundant
|
|
|
|
y: ref y, //~ ERROR the `y:` in this pattern is redundant
|
|
|
|
} = Foo { x: 0, y: 0 };
|
|
|
|
|
|
|
|
let Foo {
|
|
|
|
x,
|
|
|
|
ref y,
|
|
|
|
} = Foo { x: 0, y: 0 };
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2015-01-08 10:54:35 +00:00
|
|
|
const x: isize = 1;
|
2014-10-06 00:36:53 +00:00
|
|
|
|
|
|
|
match (Foo { x: 1, y: 1 }) {
|
|
|
|
Foo { x: x, ..} => {},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
struct Bar {
|
|
|
|
x: x,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct x;
|
|
|
|
|
|
|
|
match (Bar { x: x }) {
|
|
|
|
Bar { x: x } => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
struct Bar {
|
|
|
|
x: Foo,
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Foo { x }
|
|
|
|
|
2014-11-06 08:05:53 +00:00
|
|
|
match (Bar { x: Foo::x }) {
|
|
|
|
Bar { x: Foo::x } => {},
|
2014-10-06 00:36:53 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-21 22:59:38 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
struct Baz {
|
|
|
|
x: isize,
|
|
|
|
y: isize,
|
|
|
|
z: isize,
|
|
|
|
}
|
|
|
|
|
|
|
|
let Baz {
|
|
|
|
x: mut x, //~ ERROR the `x:` in this pattern is redundant
|
|
|
|
y: ref y, //~ ERROR the `y:` in this pattern is redundant
|
|
|
|
z: ref mut z, //~ ERROR the `z:` in this pattern is redundant
|
|
|
|
} = Baz { x: 0, y: 0, z: 0 };
|
|
|
|
}
|
2014-10-06 00:36:53 +00:00
|
|
|
}
|