]> git.proxmox.com Git - rustc.git/blame - src/test/ui/or-patterns/or-pattern-mismatch.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / or-patterns / or-pattern-mismatch.stderr
CommitLineData
b7449926 1error[E0308]: mismatched types
0731742a 2 --> $DIR/or-pattern-mismatch.rs:3:68
b7449926 3 |
0731742a 4LL | fn main() { match Blah::A(1, 1, 2) { Blah::A(_, x, y) | Blah::B(x, y) => { } } }
60c5eb7d 5 | ^ expected `usize`, found `isize`
b7449926
XL
6
7error: aborting due to previous error
8
9For more information about this error, try `rustc --explain E0308`.