summaryrefslogtreecommitdiff
path: root/bugs-fixed/numeric-subsep.awk
diff options
context:
space:
mode:
Diffstat (limited to 'bugs-fixed/numeric-subsep.awk')
-rw-r--r--bugs-fixed/numeric-subsep.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/bugs-fixed/numeric-subsep.awk b/bugs-fixed/numeric-subsep.awk
new file mode 100644
index 0000000000000..1252e4a99607b
--- /dev/null
+++ b/bugs-fixed/numeric-subsep.awk
@@ -0,0 +1,5 @@
+BEGIN {
+ SUBSEP = 123.456;
+ a["hello", "world"] = "foo";
+ print a["hello" SUBSEP "world"];
+}