diff options
author | Aleksey Kladov <[email protected]> | 2018-01-13 08:55:03 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-01-13 08:55:03 +0000 |
commit | 29b2e0adcc35834dda2884222624bfcc268a3eff (patch) | |
tree | 0838a22c27bba0361dcde3660075175f243a4d7a /tests/data/lexer | |
parent | f31d85860771b0c4c8d232d79e4a3489a051ba9d (diff) |
G: allow self & super in paths
Diffstat (limited to 'tests/data/lexer')
-rw-r--r-- | tests/data/lexer/0011_keywords.rs | 3 | ||||
-rw-r--r-- | tests/data/lexer/0011_keywords.txt | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/data/lexer/0011_keywords.rs b/tests/data/lexer/0011_keywords.rs index c5a58a205..aa729cdbd 100644 --- a/tests/data/lexer/0011_keywords.rs +++ b/tests/data/lexer/0011_keywords.rs | |||
@@ -1,2 +1 @@ | |||
1 | fn use struct trait enum impl true false as extern crate mod pub self super | fn use struct trait enum impl true false as extern crate mod pub self super in | |
2 | |||
diff --git a/tests/data/lexer/0011_keywords.txt b/tests/data/lexer/0011_keywords.txt index 248628f34..8a1f525ac 100644 --- a/tests/data/lexer/0011_keywords.txt +++ b/tests/data/lexer/0011_keywords.txt | |||
@@ -27,4 +27,6 @@ WHITESPACE 1 " " | |||
27 | SELF_KW 4 "self" | 27 | SELF_KW 4 "self" |
28 | WHITESPACE 1 " " | 28 | WHITESPACE 1 " " |
29 | SUPER_KW 5 "super" | 29 | SUPER_KW 5 "super" |
30 | WHITESPACE 2 "\n\n" | 30 | WHITESPACE 1 " " |
31 | IN_KW 2 "in" | ||
32 | WHITESPACE 1 "\n" | ||