--- a
+++ b/test/stmt-if.c
@@ -0,0 +1,19 @@
+
+int func()
+{
+	if (1 > 5)
+		return 1;
+	if (1 < 5)
+	{
+		return 2;
+	}
+	if (1 == 5)
+	{
+		return 3;
+	}
+	else
+	{
+		return 4;
+	}
+}
+