2022-07-16 23:03:30 -05:00
|
|
|
error[E0618]: expected function, found enum variant `Alias::Unit`
|
|
|
|
--> $DIR/issue-99240-2.rs:7:5
|
|
|
|
|
|
|
|
|
LL | Unit,
|
|
|
|
| ---- enum variant `Alias::Unit` defined here
|
|
|
|
...
|
2022-12-27 13:03:59 -06:00
|
|
|
LL | // Alias::
|
2022-07-16 23:03:30 -05:00
|
|
|
LL | || Unit();
|
|
|
|
| ||________^_- call expression requires function
|
2022-11-23 16:28:45 -06:00
|
|
|
| |________|
|
2024-04-25 05:17:29 -05:00
|
|
|
|
|
2022-07-16 23:03:30 -05:00
|
|
|
|
|
|
|
|
help: `Alias::Unit` is a unit enum variant, and does not take parentheses to be constructed
|
|
|
|
|
|
|
|
|
LL - Unit();
|
|
|
|
LL + Unit;
|
|
|
|
|
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-07-16 23:03:30 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0618`.
|