summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0423.stderr
blob: ef24295332d515e3bebbb72d6e813f5b5b515f13 (plain)
1
2
3
4
5
6
7
8
9
error[E0423]: expected function, found struct `Foo`
  --> $DIR/E0423.rs:14:13
   |
LL |     let f = Foo(); //~ ERROR E0423
   |             ^^^ did you mean `Foo { /* fields */ }`?

error: aborting due to previous error

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