]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lub-glb/old-lub-glb-hr-noteq1.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / lub-glb / old-lub-glb-hr-noteq1.stderr
CommitLineData
f035d41b
XL
1error[E0308]: `match` arms have incompatible types
2 --> $DIR/old-lub-glb-hr-noteq1.rs:11:14
3 |
4LL | let z = match 22 {
5 | _____________-
6LL | | 0 => x,
7 | | - this is found to be of type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
8LL | | _ => y,
9 | | ^ one type is more general than the other
10LL | | };
11 | |_____- `match` arms have incompatible types
12 |
13 = note: expected fn pointer `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
14 found fn pointer `for<'a> fn(&'a u8, &'a u8) -> &'a u8`
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0308`.