diff options
Diffstat (limited to '')
-rw-r--r-- | testerrors.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testerrors.lua b/testerrors.lua index 271773a..b82c591 100644 --- a/testerrors.lua +++ b/testerrors.lua | |||
@@ -123,13 +123,17 @@ local patterns = { | |||
123 | [[ A <- %nosuch ('error' ]], | 123 | [[ A <- %nosuch ('error' ]], |
124 | [[A <- Unknown Rules]], | 124 | [[A <- Unknown Rules]], |
125 | [['a' / &@ ('c' / 'd')]], | 125 | [['a' / &@ ('c' / 'd')]], |
126 | -- 81 - 84 | 126 | -- 81 - 85 |
127 | [['x' / & / 'y']], | 127 | [['x' / & / 'y']], |
128 | [[&/'p'/!/'q']], | 128 | [[&/'p'/!/'q']], |
129 | [['p'//'q']], | 129 | [['p'//'q']], |
130 | [[ | 130 | [[ |
131 | S <- 'forgot to close / T | 131 | S <- 'forgot to close / T |
132 | T <- 'T' & / 't' | 132 | T <- 'T' & / 't' |
133 | ]], | ||
134 | [[ | ||
135 | S <- [a-z / T | ||
136 | T <- 'x' / & / 'y' | ||
133 | ]] | 137 | ]] |
134 | } | 138 | } |
135 | 139 | ||