]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0124.rs
Suggest `if let`/`let_else` for refutable pat in `let`
[rust.git] / src / test / ui / error-codes / E0124.rs
1 struct Foo {
2     field1: i32,
3     field1: i32,
4     //~^ ERROR field `field1` is already declared [E0124]
5 }
6
7 fn main() {
8 }