Index: tests/.expect/nested-types-ERR1.txt
===================================================================
--- tests/.expect/nested-types-ERR1.txt	(revision 60a80627d0a7fda17787b753d33a741d3719f79a)
+++ tests/.expect/nested-types-ERR1.txt	(revision 6988dc6240b63a604b87784aac94ea794803dc6f)
@@ -1,1 +1,1 @@
-nested-types.cfa:70:1 error: Use of undefined type T
+nested-types.cfa:83:1 error: Use of undefined type T
Index: tests/.expect/nested-types-ERR2.txt
===================================================================
--- tests/.expect/nested-types-ERR2.txt	(revision 60a80627d0a7fda17787b753d33a741d3719f79a)
+++ tests/.expect/nested-types-ERR2.txt	(revision 6988dc6240b63a604b87784aac94ea794803dc6f)
@@ -1,5 +1,5 @@
-nested-types.cfa:73:1 error: Use of undefined global type Z
-nested-types.cfa:74:1 error: Qualified type requires an aggregate on the left, but has: signed int
-nested-types.cfa:75:1 error: Undefined type in qualified type: Qualified Type:
+nested-types.cfa:86:1 error: Use of undefined global type Z
+nested-types.cfa:87:1 error: Qualified type requires an aggregate on the left, but has: signed int
+nested-types.cfa:88:1 error: Undefined type in qualified type: Qualified Type:
   instance of struct S with body 1
   instance of type Z (not function type)
Index: tests/nested-types.cfa
===================================================================
--- tests/nested-types.cfa	(revision 60a80627d0a7fda17787b753d33a741d3719f79a)
+++ tests/nested-types.cfa	(revision 6988dc6240b63a604b87784aac94ea794803dc6f)
@@ -10,6 +10,6 @@
 // Created On       : Mon Jul 9 10:20:03 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Nov  6 17:59:40 2018
-// Update Count     : 2
+// Last Modified On : Wed Feb 12 18:21:15 2020
+// Update Count     : 3
 //
 
@@ -50,4 +50,17 @@
 //   double d;
 // };
+
+// struct S {
+//     enum C { R, G, B };
+//     int i;
+//     struct T {
+// 	int i;
+//     };
+//     T t;
+// };
+
+// S s;
+// S.C c;
+// S.T t;
 
 int main() {
