mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
212 B
Rust
19 lines
212 B
Rust
// run-pass
|
|
|
|
struct A;
|
|
|
|
impl A {
|
|
const fn banana() -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
const ABANANA: bool = A::banana();
|
|
|
|
fn main() {
|
|
match true {
|
|
ABANANA => {},
|
|
_ => panic!("what?")
|
|
}
|
|
}
|