xref: /illumos-gate/usr/src/test/util-tests/tests/awk/bugs-fixed/numeric-subsep.awk (revision 5b6ecd7fe9733cbbf05a3badf91c9d6db3f8a544)
1BEGIN {
2    SUBSEP = 123.456;
3    a["hello", "world"] = "foo";
4    print a["hello" SUBSEP "world"];
5}
6