aboutsummaryrefslogtreecommitdiffstats
path: root/test/intest.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/intest.awk')
-rw-r--r--test/intest.awk4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/intest.awk b/test/intest.awk
new file mode 100644
index 00000000..f030d07a
--- /dev/null
+++ b/test/intest.awk
@@ -0,0 +1,4 @@
+BEGIN {
+ bool = ((b = 1) in c);
+ print bool, b # gawk-3.0.1 prints "0 "; should print "0 1"
+}