summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-07-31 17:31:24 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-07-31 17:33:20 -0700
commitc88933d714f12be6bdca80cc9583a1e5670cfc62 (patch)
tree8d17f1dc5cec7892ff7cc71bb4b5cf0d3a883f1b /src/libsyntax/parse/token.rs
parentc4bb8f8aafd25b9d5e68481af7088ab9e47c1e29 (diff)
downloadrust-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.rs2
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",