summaryrefslogtreecommitdiff
path: root/test/profile4.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/profile4.awk')
-rw-r--r--test/profile4.awk8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/profile4.awk b/test/profile4.awk
new file mode 100644
index 00000000..11a3dbd4
--- /dev/null
+++ b/test/profile4.awk
@@ -0,0 +1,8 @@
+BEGIN {
+ a = ("foo" (c = "bar"))
+ a = (b - c) "foo"
+ a = "foo" (b - c)
+ q = (d = "x") (e = "y")
+ a = ((c = tolower("FOO")) in JUNK)
+ x = (y == 0 && z == 2 && q == 45)
+}