rust/src/test/ui/issues/issue-11692-1.stderr

19 lines
437 B
Plaintext
Raw Normal View History

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
|
LL | print!(testo!());
| ^^^^^^^^
2018-07-20 06:19:13 +00:00
help: you might be missing a string literal to format with
|
LL | print!("{}", testo!());
2018-07-20 06:19:13 +00:00
| ^^^^^
2018-07-15 21:11:54 +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