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