Blame test/profile4.awk

Packit Service f629e6
BEGIN {
Packit Service f629e6
	a = ("foo" (c = "bar"))
Packit Service f629e6
	a = (b - c) "foo"
Packit Service f629e6
	a = "foo" (b - c)
Packit Service f629e6
	q = (d = "x") (e = "y")
Packit Service f629e6
	a = ((c = tolower("FOO")) in JUNK)
Packit Service f629e6
	x = (y == 0 && z == 2 && q == 45)
Packit Service f629e6
}