summary refs log tree commit diff
path: root/src/test/pretty/match-block-expr.rs
blob: 0db6574b0737f318124e7f818bf63157040e2553 (plain)
1
2
3
4
5
6
// pp-exact

fn main() {
    let x = match { 5 } { 1 => 5, 2 => 6, _ => 7, };
    assert_eq!(x , 7);
}