From 0415841504d691b6fa911d6b57a493db3601ffec Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 11 Oct 2010 18:41:45 -0700 Subject: [PATCH] rustc: Add the tuple type to the AST --- src/comp/front/ast.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 34df06add68..1425db61a24 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -117,6 +117,7 @@ tag ty_ { ty_char; ty_str; ty_box(@ty); + ty_tup(vec[tup(bool /* mutability */, @ty)]); ty_path(path, option[referent]); }