2018-07-19 23:19:13 -07:00
|
|
|
error: format argument must be a string literal
|
2018-07-15 14:11:54 -07:00
|
|
|
--> $DIR/issue-11692-1.rs:12:12
|
|
|
|
|
|
2018-07-23 02:52:51 +03:00
|
|
|
LL | print!(testo!());
|
|
|
|
| ^^^^^^^^
|
2018-07-19 23:19:13 -07:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
2018-07-23 02:52:51 +03:00
|
|
|
LL | print!("{}", testo!());
|
2018-07-19 23:19:13 -07:00
|
|
|
| ^^^^^
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|