diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-03-08 00:58:45 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-03-10 22:02:47 +0100 |
| commit | 4e877adddf7b2f7d9093bf26cd8649f30c04b834 (patch) | |
| tree | 150c8e31641a981685d4c4eaab5bb9abd9afeebe /src/libsyntax/parse/token.rs | |
| parent | d30609ffd782c941f38d62caaed8beb6fde965db (diff) | |
| download | rust-4e877adddf7b2f7d9093bf26cd8649f30c04b834.tar.gz rust-4e877adddf7b2f7d9093bf26cd8649f30c04b834.zip | |
Remove proc keyword
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"); |
