rust/src/test/ui/issues/issue-11692-1.stderr

13 lines
298 B
Plaintext

error: format argument must be a string literal
--> $DIR/issue-11692-1.rs:12:12
|
LL | print!(testo!());
| ^^^^^^^^
help: you might be missing a string literal to format with
|
LL | print!("{}", testo!());
| ^^^^^
error: aborting due to previous error