diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-07-31 17:31:24 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-07-31 17:33:20 -0700 |
| commit | c88933d714f12be6bdca80cc9583a1e5670cfc62 (patch) | |
| tree | 8d17f1dc5cec7892ff7cc71bb4b5cf0d3a883f1b /src/libsyntax/parse/token.rs | |
| parent | c4bb8f8aafd25b9d5e68481af7088ab9e47c1e29 (diff) | |
| download | rust-c88933d714f12be6bdca80cc9583a1e5670cfc62.tar.gz rust-c88933d714f12be6bdca80cc9583a1e5670cfc62.zip | |
rustc: Implement unary move. Closes #917.
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -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 e4386ab140f..1d4e67c5d14 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -327,7 +327,7 @@ fn restricted_keyword_table() -> hashmap<~str, ()> { ~"fail", ~"false", ~"fn", ~"for", ~"if", ~"iface", ~"impl", ~"import", ~"let", ~"log", ~"loop", - ~"match", ~"mod", ~"module", ~"mut", + ~"match", ~"mod", ~"module", ~"move", ~"mut", ~"new", ~"owned", ~"pure", |
