2018-10-20 15:36:17 -05:00
|
|
|
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `assert_eq`
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $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
|
|
|
|
|