]> git.proxmox.com Git - rustc.git/blob - tests/ui/nll/relate_tys/fn-subtype.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / nll / relate_tys / fn-subtype.stderr
1 error[E0308]: mismatched types
2 --> $DIR/fn-subtype.rs:7:33
3 |
4 LL | let y: for<'a> fn(&'a ()) = x;
5 | ^ one type is more general than the other
6 |
7 = note: expected fn pointer `for<'a> fn(&'a ())`
8 found fn pointer `fn(&())`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.