]> git.proxmox.com Git - rustc.git/blob - src/test/ui/where-clauses/higher-ranked-fn-type.quiet.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / where-clauses / higher-ranked-fn-type.quiet.stderr
1 error[E0277]: the trait bound `for<'b> fn(&'b ()): Foo` is not satisfied
2 --> $DIR/higher-ranked-fn-type.rs:20:5
3 |
4 LL | called()
5 | ^^^^^^ the trait `for<'b> Foo` is not implemented for `fn(&'b ())`
6 |
7 note: required by a bound in `called`
8 --> $DIR/higher-ranked-fn-type.rs:12:25
9 |
10 LL | fn called()
11 | ------ required by a bound in this
12 LL | where
13 LL | for<'b> fn(&'b ()): Foo,
14 | ^^^ required by this bound in `called`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.