librustc: Implement unit-like struct constants. r=brson

This commit is contained in:
Patrick Walton 2012-11-30 18:32:50 -08:00
parent 8fa306a0ad
commit 1088006ed9
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,10 @@
struct Foo;
const X: Foo = Foo;
fn main() {
match X {
Foo => {}
}
}