Rebase and fix text changed by master

This commit is contained in:
Esteban Küber 2018-07-19 23:19:13 -07:00
parent f4306ffbfc
commit 85da68cb6d
1 changed files with 5 additions and 1 deletions

View File

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