2022-10-19 23:19:54 -05:00
|
|
|
error[E0015]: cannot call non-const closure in constants
|
2023-07-27 10:51:02 -05:00
|
|
|
--> $DIR/issue-102985.rs:6:14
|
2022-10-12 22:10:00 -05:00
|
|
|
|
|
|
|
|
LL | n => n(),
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
|
|
|
|
2023-07-27 10:51:02 -05:00
|
|
|
error: aborting due to previous error
|
2022-10-12 22:10:00 -05:00
|
|
|
|
2023-07-27 10:51:02 -05:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|