]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-10536.stderr
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / macros / issue-10536.stderr
1 error: expected one of `(`, `[`, or `{`, found `two`
2   --> $DIR/issue-10536.rs:14:19
3    |
4 LL |     assert!({one! two()});
5    |                   ^^^ expected one of `(`, `[`, or `{`
6
7 error: expected one of `(`, `[`, or `{`, found `two`
8   --> $DIR/issue-10536.rs:18:19
9    |
10 LL |     assert!({one! two});
11    |                   ^^^ expected one of `(`, `[`, or `{`
12
13 error: aborting due to 2 previous errors
14