]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binop/issue-77910-2.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / binop / issue-77910-2.stderr
1 error[E0369]: binary operation `==` cannot be applied to type `for<'a> fn(&'a i32) -> &'a i32 {foo}`
2   --> $DIR/issue-77910-2.rs:7:12
3    |
4 LL |     if foo == y {}
5    |        --- ^^ - _
6    |        |
7    |        for<'a> fn(&'a i32) -> &'a i32 {foo}
8    |
9 help: use parentheses to call this function
10    |
11 LL |     if foo(/* &i32 */) == y {}
12    |           ++++++++++++
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0369`.