blob: 8a2f500676e688bfbeec60a9485a706adb0aab0f [file] [log] [blame]
//@ run-pass
struct Foo;
pub fn main() {
let x: Foo = Foo;
match x {
Foo => { println!("hi"); }
}
}