2021-12-10 01:10:05 +08:00
|
|
|
error[E0015]: cannot call non-const fn `non_const` in constants
|
2020-05-21 12:49:38 -07:00
|
|
|
--> $DIR/issue-46843.rs:10:26
|
2019-11-17 21:11:42 -08:00
|
|
|
|
|
|
|
|
LL | pub const Q: i32 = match non_const() {
|
|
|
|
| ^^^^^^^^^^^
|
2021-12-10 01:10:05 +08:00
|
|
|
|
|
|
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
2019-11-17 21:11:42 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0015`.
|