]> git.proxmox.com Git - rustc.git/blob - src/test/ui/hr-subtype/placeholder-pattern-fail.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / hr-subtype / placeholder-pattern-fail.stderr
1 error[E0308]: mismatched types
2 --> $DIR/placeholder-pattern-fail.rs:9:47
3 |
4 LL | let _: for<'a, 'b> fn(Inv<'a>, Inv<'b>) = sub;
5 | ^^^ one type is more general than the other
6 |
7 = note: expected fn pointer `for<'a, 'b> fn(Inv<'a>, Inv<'b>)`
8 found fn pointer `for<'a> fn(Inv<'a>, Inv<'a>)`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.