blob: 61ff455d16ca587ec008a390b7fe470bfc8e5ea5 [file] [log] [blame]
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