rust/tests/ui/consts/issue-43105.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
497 B
Plaintext
Raw Normal View History

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
--> $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
For more information about this error, try `rustc --explain E0015`.