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

11 lines
326 B
Text
Raw Normal View History

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