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