2018-07-20 06:19:13 +00:00
|
|
|
error: format argument must be a string literal
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-11692-1.rs:2:12
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-07-22 23:52:51 +00:00
|
|
|
LL | print!(testo!());
|
|
|
|
| ^^^^^^^^
|
2018-07-20 06:19:13 +00:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
2018-07-22 23:52:51 +00:00
|
|
|
LL | print!("{}", testo!());
|
2018-07-20 06:19:13 +00:00
|
|
|
| ^^^^^
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2018-12-16 17:23:27 +00:00
|
|
|
error: cannot find macro `testo!` in this scope
|
|
|
|
--> $DIR/issue-11692-1.rs:12:12
|
|
|
|
|
|
|
|
|
LL | print!(testo!());
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 21:11:54 +00:00
|
|
|
|