rust/src/test/ui/issue-10536.stderr
2018-07-15 17:10:52 -07:00

14 lines
395 B
Text

error: macros that expand to items must either be surrounded with braces or followed by a semicolon
--> $DIR/issue-10536.rs:26:22
|
LL | assert!({one! two()});
| ^^
error: expected `(` or `{`, found `}`
--> $DIR/issue-10536.rs:31:22
|
LL | assert!({one! two});
| ^ expected `(` or `{`
error: aborting due to 2 previous errors