summary refs log tree commit diff
path: root/src/test/ui/issue-43105.stderr
blob: 18da9310503ea581b436861f1849e3ba5c8bbe2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
  --> $DIR/issue-43105.rs:13:17
   |
LL | const NUM: u8 = xyz();
   |                 ^^^^^

error[E0080]: could not evaluate constant pattern
  --> $DIR/issue-43105.rs:18:9
   |
LL | const NUM: u8 = xyz();
   |                 ----- calling non-const fn `xyz`
...
LL |         NUM => unimplemented!(),
   |         ^^^

error: aborting due to 2 previous errors

Some errors occurred: E0015, E0080.
For more information about an error, try `rustc --explain E0015`.