1
Fork 0

rustc: Translate tuple struct constructors

This commit is contained in:
Patrick Walton 2012-10-24 14:36:00 -07:00
parent ce23a99925
commit 599b4208fb
13 changed files with 193 additions and 49 deletions

View file

@ -0,0 +1,7 @@
struct Foo(int, int);
fn main() {
let x = Foo(1, 2);
io::println(fmt!("%?", x));
}