]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-19086.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / issues / issue-19086.stderr
1 error[E0532]: expected tuple struct or tuple variant, found variant `FooB`
2 --> $DIR/issue-19086.rs:10:9
3 |
4 LL | FooB { x: i32, y: i32 }
5 | ----------------------- `FooB` defined here
6 ...
7 LL | FooB(a, b) => println!("{} {}", a, b),
8 | ^^^^^^^^^^ help: use struct pattern syntax instead: `FooB { x: a, y: b }`
9
10 error: aborting due to 1 previous error
11
12 For more information about this error, try `rustc --explain E0532`.