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