]> git.lizzy.rs Git - rust.git/blob - tests/ui/hr-subtype/placeholder-pattern-fail.stderr
Rollup merge of #106618 - jmillikin:os-net-rustdoc-wasm32, r=JohnTitor
[rust.git] / tests / 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`.