]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lub-glb/old-lub-glb-hr-noteq1.leak.stderr
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / lub-glb / old-lub-glb-hr-noteq1.leak.stderr
1 error[E0308]: `match` arms have incompatible types
2   --> $DIR/old-lub-glb-hr-noteq1.rs:14:14
3    |
4 LL |       let z = match 22 {
5    |  _____________-
6 LL | |         0 => x,
7    | |              - this is found to be of type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
8 LL | |         _ => y,
9    | |              ^ one type is more general than the other
10 LL | |
11 LL | |
12 LL | |     };
13    | |_____- `match` arms have incompatible types
14    |
15    = note: expected fn pointer `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
16               found fn pointer `for<'a> fn(&'a u8, &'a u8) -> &'a u8`
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0308`.