mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
12 lines
326 B
Plaintext
12 lines
326 B
Plaintext
|
error[E0618]: expected function, found `&str`
|
||
|
--> $DIR/issue-22468.rs:13:13
|
||
|
|
|
||
|
LL | let foo = "bar";
|
||
|
| --- `&str` defined here
|
||
|
LL | let x = foo("baz");
|
||
|
| ^^^^^^^^^^ not a function
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0618`.
|