diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-07 15:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 00:22:21 +0200 |
commit | fb677bf5c921018b9b192aad2883068236eb0670 (patch) | |
tree | 31109dab525ef34dd192260afce4fa5f6045d296 /tests/modules | |
parent | 062571ae3ca0a7c19b639c71b087f9895dbe9c7d (diff) | |
download | Nim-fb677bf5c921018b9b192aad2883068236eb0670.tar.gz |
fix #17952: fix both false positives and false negatives for reInvalidSpec (#17956)
* fix #17952: fix both false positives and false negatives for reInvalidSpec * handle megatest properly * fix for tests/stdlib/tbase64.nim
Diffstat (limited to 'tests/modules')
-rw-r--r-- | tests/modules/texplicit_system_import.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/modules/texplicit_system_import.nim b/tests/modules/texplicit_system_import.nim index bc4d018bf..0a4cedc71 100644 --- a/tests/modules/texplicit_system_import.nim +++ b/tests/modules/texplicit_system_import.nim @@ -1,9 +1,9 @@ -##. import system except `+` + discard """ errormsg: "undeclared identifier: '+'" line: 9 """ -# Testament requires that the initial """ occurs before the 40th byte -# in the file. No kidding... + + echo 4+5 |