summary refs log tree commit diff
path: root/src/test/ui/issue-46771.stderr
blob: 0d57d61e9ffe6b912a2facfde0bc62f938c567d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0618]: expected function, found `main::Foo`
  --> $DIR/issue-46771.rs:13:23
   |
LL |     struct Foo;
   |     ----------- `main::Foo` defined here
LL |     (1 .. 2).find(|_| Foo(0) == 0); //~ ERROR expected function, found `main::Foo`
   |                       ^^^^^^ not a function

error: aborting due to previous error

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