diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-10-24 14:36:00 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-10-25 11:49:26 -0700 |
| commit | 599b4208fb64b18aaddf9add5d8ce2319c7e7cfe (patch) | |
| tree | 3b54245720a1450d324e0ae41756c5e35fe10bd0 /src/libsyntax/parse/token.rs | |
| parent | ce23a9992542f0c82e0f32c427b572caae790754 (diff) | |
| download | rust-599b4208fb64b18aaddf9add5d8ce2319c7e7cfe.tar.gz rust-599b4208fb64b18aaddf9add5d8ce2319c7e7cfe.zip | |
rustc: Translate tuple struct constructors
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 5151fd1bac8..53c1ce1c7f5 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -311,6 +311,7 @@ mod special_idents { const static : ident = ident { repr: 31u }; const intrinsic : ident = ident { repr: 32u }; const clownshoes_foreign_mod: ident = ident { repr: 33 }; + const unnamed_field: ident = ident { repr: 34 }; } struct ident_interner { |
