rust/src/test/ui/issues/issue-10536.stderr

15 lines
395 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error: macros that expand to items must either be surrounded with braces or followed by a semicolon
2018-12-25 09:56:47 -06:00
--> $DIR/issue-10536.rs:16:22
2018-07-15 16:11:54 -05:00
|
LL | assert!({one! two()});
| ^^
error: expected `(` or `{`, found `}`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-10536.rs:21:22
2018-07-15 16:11:54 -05:00
|
LL | assert!({one! two});
| ^ expected `(` or `{`
error: aborting due to 2 previous errors