rust/tests/ui/consts/issue-43105.rs
2023-01-11 09:32:08 +00:00

14 lines
291 B
Rust

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
//~| ERROR could not evaluate constant pattern
_ => unimplemented!(),
}
}