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

19 lines
436 B
Plaintext
Raw Normal View History

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