2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2012-10-30 22:53:06 +00:00
|
|
|
struct Foo;
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-10-30 22:53:06 +00:00
|
|
|
let x: Foo = Foo;
|
|
|
|
match x {
|
2014-01-09 10:06:55 +00:00
|
|
|
Foo => { println!("hi"); }
|
2012-10-30 22:53:06 +00:00
|
|
|
}
|
|
|
|
}
|