diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-02-27 03:05:14 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-03-02 10:31:19 +0300 |
| commit | 8b026a6e48ceadb2032b4982077fcdfab802cde5 (patch) | |
| tree | 00e536ee4d34cfc277f0c8e7b4bf9a04a8613e0c /src/libsyntax/parse | |
| parent | 8b60b948d94b835a1a573d34e44c55251c6cfa98 (diff) | |
| download | rust-8b026a6e48ceadb2032b4982077fcdfab802cde5.tar.gz rust-8b026a6e48ceadb2032b4982077fcdfab802cde5.zip | |
Use numeric field `Name`s ("0", "1" etc) for positional fields
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index accbb54c629..6593b3ea532 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -542,7 +542,7 @@ declare_special_idents_and_keywords! { // outside of libsyntax (7, clownshoe_abi, "__rust_abi"); (8, opaque, "<opaque>"); - (9, unnamed_field, "<unnamed_field>"); + (9, __unused1, "<__unused1>"); (super::SELF_TYPE_KEYWORD_NAME_NUM, type_self, "Self"); (11, prelude_import, "prelude_import"); } |
