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, 2 insertions, 2 deletions
diff --git a/test/intest.awk b/test/intest.awk
index f030d07a..18e0cc4d 100644
--- a/test/intest.awk
+++ b/test/intest.awk
@@ -1,4 +1,4 @@
BEGIN {
- bool = ((b = 1) in c);
- print bool, b # gawk-3.0.1 prints "0 "; should print "0 1"
+ bool_result = ((b = 1) in c);
+ print bool_result, b # gawk-3.0.1 prints "0 "; should print "0 1"
}