diff options
Diffstat (limited to 'tests/namspc/tnamspc.nim')
-rw-r--r-- | tests/namspc/tnamspc.nim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/namspc/tnamspc.nim b/tests/namspc/tnamspc.nim new file mode 100644 index 000000000..1e2049cec --- /dev/null +++ b/tests/namspc/tnamspc.nim @@ -0,0 +1,12 @@ +discard """ + file: "tnamspc.nim" + line: 10 + errormsg: "undeclared identifier: \'global\'" +""" +# Test17 - test correct handling of namespaces + +import mnamspc1 + +global = 9 #ERROR + + |