summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-46771.stderr
blob: 512827b2dbdcd837c64644eeca99fcdb35097502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0618]: expected function, found `Foo`
  --> $DIR/issue-46771.rs:3:23
   |
LL |     struct Foo;
   |     ---------- `Foo` defined here
LL |     (1 .. 2).find(|_| Foo(0) == 0);
   |                       ^^^---
   |                       |
   |                       call expression requires function

error: aborting due to previous error

For more information about this error, try `rustc --explain E0618`.