12 lines
355 B
Plaintext
12 lines
355 B
Plaintext
|
error[E0423]: expected value, found struct `String`
|
||
|
--> $DIR/issue-22692.rs:12:13
|
||
|
|
|
||
|
LL | let _ = String.new();
|
||
|
| ^^^^^^----
|
||
|
| |
|
||
|
| 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`.
|