]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19086.stderr
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
[rust.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    |         ^^^^^^^^^^ help: use struct pattern syntax instead: `FooB { x, y }`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0532`.