2020-11-11 13:15:15 +00:00
|
|
|
error: in expressions, `_` can only be used on the left-hand side of an assignment
|
2023-04-15 23:11:42 +00:00
|
|
|
--> $DIR/underscore.rs:6:9
|
2020-11-11 13:15:15 +00:00
|
|
|
|
|
|
|
|
LL | _
|
|
|
|
| ^ `_` not allowed here
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-11-11 13:15:15 +00:00
|
|
|
::: $DIR/main.rs:5:5
|
|
|
|
|
|
|
|
|
LL | underscore!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ------------- in this macro invocation
|
2020-11-11 13:15:15 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `underscore` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-11 13:15:15 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-03-15 15:13:47 +00:00
|
|
|
|