summary refs log tree commit diff
path: root/tests/ui/binding/match-pattern-simple.rs
blob: 2e43b702fae945a4cadff223742bf026a3eb7719 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
#![allow(dead_code)]


//@ pretty-expanded FIXME #23616

fn altsimple(f: isize) { match f { _x => () } }

pub fn main() { }