rust/src/test/ui/parser/macros-no-semicolon.stderr

11 lines
411 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `assert_eq`
--> $DIR/macros-no-semicolon.rs:3:5
2018-10-20 15:36:17 -05:00
|
LL | assert_eq!(1, 2)
| - expected one of `.`, `;`, `?`, `}`, or an operator here
LL | assert_eq!(3, 4) //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `assert_eq`
| ^^^^^^^^^ unexpected token
error: aborting due to previous error