blob: 20b78d64209e10b552c7ce6d167718b70db608c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn xyz() -> u8 { 42 }
const NUM: u8 = xyz();
//~^ ERROR cannot call non-const fn
fn main() {
match 1 {
NUM => unimplemented!(),
//~^ ERROR could not evaluate constant pattern
_ => unimplemented!(),
}
}
|