mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
b589f47441
If the user writes `S { ref field: name }` instead of `S { field: ref name }`, we suggest the correct code. Fix #72298.
19 lines
476 B
Rust
19 lines
476 B
Rust
// run-rustfix
|
|
struct S {
|
|
field_name: (),
|
|
}
|
|
|
|
fn main() {
|
|
match (S {field_name: ()}) {
|
|
S {field_name: ref _foo} => {} //~ ERROR expected `,`
|
|
}
|
|
match (S {field_name: ()}) {
|
|
S {field_name: mut _foo} => {} //~ ERROR expected `,`
|
|
}
|
|
match (S {field_name: ()}) {
|
|
S {field_name: ref mut _foo} => {} //~ ERROR expected `,`
|
|
}
|
|
// Verify that we recover enough to run typeck.
|
|
let _: usize = 3usize; //~ ERROR mismatched types
|
|
}
|