diff options
Diffstat (limited to 'tests/variable')
-rw-r--r-- | tests/variable/override/buildfile | 2 | ||||
-rw-r--r-- | tests/variable/qualified/buildfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/variable/override/buildfile b/tests/variable/override/buildfile index 18c9831..c090e81 100644 --- a/tests/variable/override/buildfile +++ b/tests/variable/override/buildfile @@ -1,4 +1,4 @@ -if ("$t" != "") +if ($t != [null]) { [$t] v = [null] } diff --git a/tests/variable/qualified/buildfile b/tests/variable/qualified/buildfile index 90e75c7..870b808 100644 --- a/tests/variable/qualified/buildfile +++ b/tests/variable/qualified/buildfile @@ -1,5 +1,5 @@ -#v = (:bar) # error: expected name instead of ':' -#v = (foo:) # error: scope/target expected after ':' +#v = (foo:) # error: variable name expected before ':' +#v = (:bar) # error: scope/target expected after ':' print (foo:bar) print (foo :bar) |