From 741bf93462919d841ffd7f3ed8c85a202b9dc3f8 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sun, 28 Jun 2015 22:21:23 +0300 Subject: Additional memory fixes and test for typedregex. --- test/typedregex2.awk | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/typedregex2.awk (limited to 'test/typedregex2.awk') diff --git a/test/typedregex2.awk b/test/typedregex2.awk new file mode 100644 index 00000000..e17df4be --- /dev/null +++ b/test/typedregex2.awk @@ -0,0 +1,11 @@ +BEGIN { + x = @/xxx/ + y = @/yyy/ + print typeof(x), typeof(y) + print x, y + + x++ + y = y "" + print typeof(x), typeof(y) + print x, y +} -- cgit v1.2.3