12 lines
402 B
Plaintext
12 lines
402 B
Plaintext
error[E0423]: expected value, found struct `String`
|
|
--> $DIR/issue-22692.rs:2:13
|
|
|
|
|
LL | let _ = String.new(); //~ ERROR expected value, found struct `String`
|
|
| ^^^^^^----
|
|
| |
|
|
| help: use `::` to access an associated function: `String::new`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0423`.
|