rust/tests/ui/macros/issue-10536.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
406 B
Plaintext
Raw Normal View History

error: expected one of `(`, `[`, or `{`, found `two`
--> $DIR/issue-10536.rs:14:19
2018-07-15 21:11:54 +00:00
|
LL | assert!({one! two()});
| ^^^ expected one of `(`, `[`, or `{`
2018-07-15 21:11:54 +00:00
error: expected one of `(`, `[`, or `{`, found `two`
--> $DIR/issue-10536.rs:18:19
2018-07-15 21:11:54 +00:00
|
LL | assert!({one! two});
| ^^^ expected one of `(`, `[`, or `{`
error: aborting due to 2 previous errors
2018-07-15 21:11:54 +00:00