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



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

pub fn main() { }