Index: src/tests/.expect/ifcond.txt
===================================================================
--- src/tests/.expect/ifcond.txt	(revision ed45af6f6acde96306cc96f68086405acdb80877)
+++ src/tests/.expect/ifcond.txt	(revision d56cc2199f40aba8cc9635ca8e888afdd3d18ab8)
@@ -2,2 +2,3 @@
 x != 0 && y != 0 correct
 x == y correct
+s.i < 4 correct
Index: src/tests/ifcond.c
===================================================================
--- src/tests/ifcond.c	(revision ed45af6f6acde96306cc96f68086405acdb80877)
+++ src/tests/ifcond.c	(revision d56cc2199f40aba8cc9635ca8e888afdd3d18ab8)
@@ -9,7 +9,7 @@
 // Author           : Peter A. Buhr
 // Created On       : Sat Aug 26 10:13:11 2017
-// Last Modified By : Rob Schluntz
-// Last Modified On : Fri Sep 01 15:22:19 2017
-// Update Count     : 14
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sat Jun  2 09:55:02 2018
+// Update Count     : 15
 //
 
@@ -40,4 +40,10 @@
 		sout | "x != y incorrect" | endl;
 	} // if
+
+	if ( struct S { int i; } s = { 3 }; s.i < 4 ) {
+		sout | "s.i < 4 correct" | endl;
+	} else {
+		sout | "s.i >= 4 incorrect" | endl;
+	} // if
 } // main
 
