Index: src/tests/.expect/memberCtors-ERR1.txt
===================================================================
--- src/tests/.expect/memberCtors-ERR1.txt	(revision 4d4882af105c01a957552263fa5e039f2f2620f3)
+++ src/tests/.expect/memberCtors-ERR1.txt	(revision 44f634105516d986619d99fb2c97409063553f7d)
@@ -1,3 +1,3 @@
 CFA Version 1.0.0 (debug)
-Error: in void ?{}(struct B *b), member a2 used before being constructed
+Error: in void ?{}(struct B *b), field a2 used before being constructed
 make: *** [memberCtors-ERR1] Error 1
Index: src/tests/.expect/memberCtors.txt
===================================================================
--- src/tests/.expect/memberCtors.txt	(revision 4d4882af105c01a957552263fa5e039f2f2620f3)
+++ src/tests/.expect/memberCtors.txt	(revision 44f634105516d986619d99fb2c97409063553f7d)
@@ -1,2 +1,3 @@
+Before declaration of b1
 constructing int
 constructing int
@@ -16,4 +17,5 @@
 destructing int: 0
 destructing int: 1001
+Before declaration of b2
 copy constructing int: 0
 copy constructing int: 0
@@ -25,4 +27,5 @@
 copy constructing int: 0
 copy constructing int: 0
+End of main
 constructing int
 constructing int
@@ -37,8 +40,8 @@
 destructing int: 0
 destructing int: 0
-destructing int: 999
 destructing int: 0
 destructing int: 0
 destructing int: 0
+destructing int: 999
 constructing int
 constructing int
@@ -53,6 +56,6 @@
 destructing int: 0
 destructing int: 0
-destructing int: 999
 destructing int: 0
 destructing int: 0
 destructing int: 0
+destructing int: 999
Index: src/tests/memberCtors.c
===================================================================
--- src/tests/memberCtors.c	(revision 4d4882af105c01a957552263fa5e039f2f2620f3)
+++ src/tests/memberCtors.c	(revision 44f634105516d986619d99fb2c97409063553f7d)
@@ -59,5 +59,8 @@
 
 int main() {
+  printf("Before declaration of b1\n");
   B b1;
+  printf("Before declaration of b2\n");
   B b2 = b1;
+  printf("End of main\n");
 }
