diff options
author | Adam Strzelecki <ono@java.pl> | 2015-04-19 17:44:04 +0200 |
---|---|---|
committer | Adam Strzelecki <ono@java.pl> | 2015-04-21 11:32:13 +0200 |
commit | dc1b15647cfc2feea7fb41609d45910aee57573f (patch) | |
tree | dfd093cc98cd59d36785c3ef1f82cf5584ec914e /tests/parser | |
parent | 07b13251d173226cd29290935297bc9efee023b8 (diff) | |
download | Nim-dc1b15647cfc2feea7fb41609d45910aee57573f.tar.gz |
Parser: Test for exact missing ':' location column
This ensures compiler points to the right place when claiming that ':' is missing.
Diffstat (limited to 'tests/parser')
-rw-r--r-- | tests/parser/tinvcolonlocation1.nim | 12 | ||||
-rw-r--r-- | tests/parser/tinvcolonlocation2.nim | 15 | ||||
-rw-r--r-- | tests/parser/tinvcolonlocation3.nim | 12 |
3 files changed, 39 insertions, 0 deletions
diff --git a/tests/parser/tinvcolonlocation1.nim b/tests/parser/tinvcolonlocation1.nim new file mode 100644 index 000000000..cacde48bd --- /dev/null +++ b/tests/parser/tinvcolonlocation1.nim @@ -0,0 +1,12 @@ +discard """ + file: "tinvcolonlocation1.nim" + line: 8 + column: 3 + errormsg: "':' expected" +""" +try #<- missing ':' + echo "try" +except: + echo "except" +finally: + echo "finally" diff --git a/tests/parser/tinvcolonlocation2.nim b/tests/parser/tinvcolonlocation2.nim new file mode 100644 index 000000000..2b6a92b9d --- /dev/null +++ b/tests/parser/tinvcolonlocation2.nim @@ -0,0 +1,15 @@ +discard """ + file: "tinvcolonlocation2.nim" + line: 11 + column: 1 + errormsg: "':' expected" +""" +try: + echo "try" +except #<- missing ':' + echo "except" +finally: +#<-- error will be here above, at the beginning of finally, +# since compiler tries to consome echo and part of except +# expression + echo "finally" diff --git a/tests/parser/tinvcolonlocation3.nim b/tests/parser/tinvcolonlocation3.nim new file mode 100644 index 000000000..2b30b1dbe --- /dev/null +++ b/tests/parser/tinvcolonlocation3.nim @@ -0,0 +1,12 @@ +discard """ + file: "tinvcolonlocation3.nim" + line: 12 + column: 3 + errormsg: "':' expected" +""" +try: + echo "try" +except: + echo "except" +finally #<- missing ':' + echo "finally" |