Fix parser for ifeq
diff --git a/testcase/ifeq_without_parens.mk b/testcase/ifeq_without_parens.mk
index 6f1f105..dc679a3 100644
--- a/testcase/ifeq_without_parens.mk
+++ b/testcase/ifeq_without_parens.mk
@@ -38,5 +38,11 @@
 RESULT += FAIL
 endif
 
+ifeq "VAR VAR" "$(VAR) $(VAR)"
+RESULT += PASS
+else
+RESULT += FAIL
+endif
+
 test:
 	echo $(RESULT)