diff options
author | Aleksey Kladov <[email protected]> | 2018-07-31 22:30:17 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-07-31 22:30:17 +0100 |
commit | b9189ed2db8cb1934e677a17fcc6282c66306df1 (patch) | |
tree | 1456403c6eac7820c6b6760ccc6900326aedc792 /tests/data/lexer | |
parent | 2bbd4c510d2da5c78f566b28e90548102bb107dc (diff) |
move lambdas
Diffstat (limited to 'tests/data/lexer')
-rw-r--r-- | tests/data/lexer/0011_keywords.rs | 2 | ||||
-rw-r--r-- | tests/data/lexer/0011_keywords.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/data/lexer/0011_keywords.rs b/tests/data/lexer/0011_keywords.rs index 2a78b5dd2..22b063567 100644 --- a/tests/data/lexer/0011_keywords.rs +++ b/tests/data/lexer/0011_keywords.rs | |||
@@ -1,3 +1,3 @@ | |||
1 | fn use struct trait enum impl true false as extern crate | 1 | fn use struct trait enum impl true false as extern crate |
2 | mod pub self super in where for loop while if match const | 2 | mod pub self super in where for loop while if match const |
3 | static mut type ref let else | 3 | static mut type ref let else move |
diff --git a/tests/data/lexer/0011_keywords.txt b/tests/data/lexer/0011_keywords.txt index e25d7d4b4..7cfc76716 100644 --- a/tests/data/lexer/0011_keywords.txt +++ b/tests/data/lexer/0011_keywords.txt | |||
@@ -55,4 +55,6 @@ WHITESPACE 1 " " | |||
55 | LET_KW 3 "let" | 55 | LET_KW 3 "let" |
56 | WHITESPACE 1 " " | 56 | WHITESPACE 1 " " |
57 | ELSE_KW 4 "else" | 57 | ELSE_KW 4 "else" |
58 | WHITESPACE 1 " " | ||
59 | MOVE_KW 4 "move" | ||
58 | WHITESPACE 1 "\n" | 60 | WHITESPACE 1 "\n" |