summaryrefslogtreecommitdiff
path: root/Bugs/numkey
diff options
context:
space:
mode:
Diffstat (limited to 'Bugs/numkey')
-rw-r--r--Bugs/numkey12
1 files changed, 0 insertions, 12 deletions
diff --git a/Bugs/numkey b/Bugs/numkey
deleted file mode 100644
index 8d94cba91d..0000000000
--- a/Bugs/numkey
+++ /dev/null
@@ -1,12 +0,0 @@
-$zz = { 1, 9 };
-print %$zz; # wrong; outputs 9
-
-print "\n";
-
-$zz = { "1", 9 };
-print %$zz; # ok; outputs 19
-
-print "\n";
-
-%xx = ( 1, 9 );
-print %xx; # ok; outputs 19