rust/tests/ui/consts/const-pattern-not-const-evaluable.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
510 B
Rust
Raw Normal View History

//@ build-pass (FIXME(62277): could be check-pass?)
2018-01-16 08:24:38 +00:00
#[derive(PartialEq, Eq)]
enum Cake {
BlackForest,
Marmor,
}
use Cake::*;
struct Pair<A, B>(A, B);
const BOO: Pair<Cake, Cake> = Pair(Marmor, BlackForest);
const FOO: Cake = BOO.1;
const fn foo() -> Cake {
Marmor
}
const WORKS: Cake = Marmor;
const GOO: Cake = foo();
fn main() {
match BlackForest {
FOO => println!("hi"),
GOO => println!("meh"),
WORKS => println!("möp"),
_ => println!("bye"),
}
}