]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-19086.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-19086.stderr
1 error[E0532]: expected tuple struct or tuple variant, found struct 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 | ^^^^ did you mean `FooB { /* fields */ }`?
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0532`.