2021-12-09 11:10:05 -06:00
|
|
|
error[E0015]: cannot call non-const fn `xyz` in constants
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43105.rs:3:17
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | const NUM: u8 = xyz();
|
|
|
|
| ^^^^^
|
2021-12-09 11:10:05 -06:00
|
|
|
|
|
|
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2018-11-16 11:38:28 -06:00
|
|
|
error: could not evaluate constant pattern
|
2020-11-09 11:45:11 -06:00
|
|
|
--> $DIR/issue-43105.rs:8:9
|
2018-11-16 11:38:28 -06:00
|
|
|
|
|
|
|
|
LL | NUM => unimplemented!(),
|
|
|
|
| ^^^
|
|
|
|
|
2023-02-27 11:43:39 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2018-08-31 06:50:14 -05:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|