]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / nll / relate_tys / hr-fn-aaa-as-aba.stderr
CommitLineData
94222f64 1error[E0308]: mismatched types
923072b8 2 --> $DIR/hr-fn-aaa-as-aba.rs:12:58
8faf50e0
XL
3 |
4LL | let a: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
94222f64
XL
5 | ^^^^^^^^^ one type is more general than the other
6 |
c295e0f8 7 = note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
94222f64 8 found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
8faf50e0 9
94222f64 10error[E0308]: mismatched types
923072b8 11 --> $DIR/hr-fn-aaa-as-aba.rs:20:12
b7449926
XL
12 |
13LL | let _: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
94222f64
XL
14 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
15 |
16 = note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
c295e0f8 17 found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
b7449926
XL
18
19error: aborting due to 2 previous errors
8faf50e0 20
94222f64 21For more information about this error, try `rustc --explain E0308`.