summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-43105.stderr
blob: 2d1174af71c86218ccdbb0020539c0a29bfe9ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0015]: cannot call non-const fn `xyz` in constants
  --> $DIR/issue-43105.rs:3:17
   |
LL | const NUM: u8 = xyz();
   |                 ^^^^^
   |
   = note: calls in constants are limited to constant functions, tuple structs and tuple variants

error: could not evaluate constant pattern
  --> $DIR/issue-43105.rs:8:9
   |
LL |         NUM => unimplemented!(),
   |         ^^^

error: could not evaluate constant pattern
  --> $DIR/issue-43105.rs:8:9
   |
LL |         NUM => unimplemented!(),
   |         ^^^

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0015`.