rust/tests/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
926 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2022-04-01 12:13:25 -05:00
--> $DIR/hr-fn-aaa-as-aba.rs:12:58
2018-07-23 09:30:59 -05:00
|
LL | let a: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
| ^^^^^^^^^ one type is more general than the other
|
= note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
2018-07-23 09:30:59 -05:00
error[E0308]: mismatched types
2022-04-01 12:13:25 -05:00
--> $DIR/hr-fn-aaa-as-aba.rs:20:12
|
LL | let _: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
|
= note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
error: aborting due to 2 previous errors
2018-07-23 09:30:59 -05:00
For more information about this error, try `rustc --explain E0308`.