diff options
| author | bors <bors@rust-lang.org> | 2015-03-11 23:51:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-11 23:51:30 +0000 |
| commit | 425297a93035bc89663ff5f83d229f6c19341ffb (patch) | |
| tree | 5e2406b181498f03ec352b883f4be61862114f00 /src/libsyntax/parse/token.rs | |
| parent | ae4812b6136797bbe3daec7fb8c6673a87998b37 (diff) | |
| parent | db726faf324c9258c3e93f15d41ada4f9d008f66 (diff) | |
| download | rust-425297a93035bc89663ff5f83d229f6c19341ffb.tar.gz rust-425297a93035bc89663ff5f83d229f6c19341ffb.zip | |
Auto merge of #23156 - GuillaumeGomez:remove-proc, r=alexcrichton
This is the implementation of the [RFC 584](https://github.com/rust-lang/rfcs/pull/584).
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 61a3a5ca82a..4a3ea971c7a 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -561,11 +561,11 @@ declare_special_idents_and_keywords! { (39, Virtual, "virtual"); (40, While, "while"); (41, Continue, "continue"); - (42, Proc, "proc"); - (43, Box, "box"); - (44, Const, "const"); - (45, Where, "where"); + (42, Box, "box"); + (43, Const, "const"); + (44, Where, "where"); 'reserved: + (45, Proc, "proc"); (46, Alignof, "alignof"); (47, Become, "become"); (48, Offsetof, "offsetof"); |
