mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
267 B
Plaintext
11 lines
267 B
Plaintext
error: expected a literal
|
|
--> $DIR/bad-concat.rs:5:21
|
|
|
|
|
LL | let _ = concat!(x, y, z, "bar");
|
|
| ^ ^ ^
|
|
|
|
|
= note: only literals (like `"foo"`, `42` and `3.14`) can be passed to `concat!()`
|
|
|
|
error: aborting due to previous error
|
|
|