blob: 90680c0194c554735b1cfd9043d5c7c7e020e96a [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() {}