Index: tests/enum_tests/.expect/pointerEnum.cfa
===================================================================
--- tests/enum_tests/.expect/pointerEnum.cfa	(revision 25b0fde212ca4f2989674f4c453738a67d543323)
+++ 	(revision )
@@ -1,1 +1,0 @@
-v: 1
Index: tests/enum_tests/.expect/qualifiedEnum.cfa
===================================================================
--- tests/enum_tests/.expect/qualifiedEnum.cfa	(revision 25b0fde212ca4f2989674f4c453738a67d543323)
+++ 	(revision )
@@ -1,1 +1,0 @@
-l :1
Index: tests/enum_tests/.expect/typedIntEnum.txt
===================================================================
--- tests/enum_tests/.expect/typedIntEnum.txt	(revision 25b0fde212ca4f2989674f4c453738a67d543323)
+++ tests/enum_tests/.expect/typedIntEnum.txt	(revision 9845cb6d529fd96e3423e971fbf240545e90a0c4)
@@ -1,7 +1,7 @@
-0
-1
-1000
-1001
-2000
-2001
-2002
+0=0
+1=1
+1000=1000
+1001=1001
+2000=2000
+2001=2001
+2002=2002
Index: tests/enum_tests/pointerEnum.cfa
===================================================================
--- tests/enum_tests/pointerEnum.cfa	(revision 25b0fde212ca4f2989674f4c453738a67d543323)
+++ tests/enum_tests/pointerEnum.cfa	(revision 9845cb6d529fd96e3423e971fbf240545e90a0c4)
@@ -11,4 +11,4 @@
 int main() {
     E * v = First;
-    sout | "v: " | e.x;
+    // sout | "v: " | e.x;
 }
Index: tests/enum_tests/typedIntEnum.cfa
===================================================================
--- tests/enum_tests/typedIntEnum.cfa	(revision 25b0fde212ca4f2989674f4c453738a67d543323)
+++ tests/enum_tests/typedIntEnum.cfa	(revision 9845cb6d529fd96e3423e971fbf240545e90a0c4)
@@ -12,11 +12,11 @@
 
 int main() {
-    printf("%d\n", zero);
-    printf("%d\n", one);
-    printf("%d\n", thousand);
-    printf("%d\n", thousand_one);
-    printf("%d\n", two_thousand);
-    printf("%d\n", two_thousand_one);
-    printf("%d\n", two_thousand_two);
+    printf("0=%d\n", zero);
+    printf("1=%d\n", one);
+    printf("1000=%d\n", thousand);
+    printf("1001=%d\n", thousand_one);
+    printf("2000=%d\n", two_thousand);
+    printf("2001=%d\n", two_thousand_one);
+    printf("2002=%d\n", two_thousand_two);
     return 0;
 }
