2017-12-10 22:47:55 +03:00
|
|
|
error[E0070]: invalid left-hand side expression
|
|
|
|
--> $DIR/issue-26093.rs:13:9
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | $thing = 42;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^ left-hand of expression not valid
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | not_a_place!(99);
|
2018-01-29 01:59:34 +02:00
|
|
|
| ----------------- in this macro invocation
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0070`.
|