blob: aee398efeddeeff986d1446cd479f44a828d2b3a (
plain)
1
2
3
4
5
6
7
8
|
error[E0423]: expected function, found struct `Foo`
--> $DIR/E0423.rs:14:13
|
14 | let f = Foo(); //~ ERROR E0423
| ^^^ did you mean `Foo { /* fields */ }`?
error: aborting due to previous error
|