aboutsummaryrefslogtreecommitdiff
path: root/tests/type/map/testscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/type/map/testscript')
-rw-r--r--tests/type/map/testscript5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/type/map/testscript b/tests/type/map/testscript
index 7b90ddd..1c6224a 100644
--- a/tests/type/map/testscript
+++ b/tests/type/map/testscript
@@ -34,9 +34,11 @@ EOO
$* <<EOI >>EOO
m = [string_map] a@1 b@2 c@3
print ($m[b])
+print $type($m[b])
print ($m[z])
EOI
2
+string
[null]
EOO
@@ -45,6 +47,9 @@ EOO
$* <<EOI >>EOO
for p: [string_map] a@1 b@2 c@3
print $first($p) $second($p)
+
+for p: [string_map, null]
+ fail bad
EOI
a 1
b 2