Closed
Description
fn main() {
println("");
}
Produces this error with the helpful text:
error[E0423]: expected function, found macro `println`
--> src/main.rs:2:5
|
2 | println("");
| ^^^^^^^ did you mean `println!(...)`?
However, if you look at the error index for E0423...
A struct variant name was used like a function name.
That is not useful. This used to point to E0425:
An unresolved name was used.