diff options
Diffstat (limited to 'tests/modules/texplicit_system_import.nim')
-rw-r--r-- | tests/modules/texplicit_system_import.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/modules/texplicit_system_import.nim b/tests/modules/texplicit_system_import.nim new file mode 100644 index 000000000..0a4cedc71 --- /dev/null +++ b/tests/modules/texplicit_system_import.nim @@ -0,0 +1,9 @@ +import system except `+` + +discard """ + errormsg: "undeclared identifier: '+'" + line: 9 +""" + + +echo 4+5 |