1
Fork 0

rustc: Add the tuple type to the AST

This commit is contained in:
Patrick Walton 2010-10-11 18:41:45 -07:00
parent c9afe78c0c
commit 0415841504

View file

@ -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]);
}