blob: 27af3cf09156bf2edee5be6cf57f7ee3645463fe [file] [log] [blame]
//@ check-pass
const _: bool = match Some(true) {
Some(value) => true,
_ => false
};
const _: bool = {
match Some(true) {
Some(value) => true,
_ => false
}
};
fn main() {}