2018-07-20 01:19:13 -05:00
|
|
|
error: format argument must be a string literal
|
2018-07-15 16:11:54 -05:00
|
|
|
--> $DIR/issue-11692-1.rs:12:12
|
|
|
|
|
|
|
|
|
LL | print!(test!());
|
|
|
|
| ^^^^^^^
|
2018-07-20 01:19:13 -05:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
|
|
|
LL | print!("{}", test!());
|
|
|
|
| ^^^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|