Index: tests/enum_tests/.expect/anonymous.txt
===================================================================
--- tests/enum_tests/.expect/anonymous.txt	(revision 42b739d7d8a375532eac77b64b9324a9be21fb17)
+++ tests/enum_tests/.expect/anonymous.txt	(revision 42b739d7d8a375532eac77b64b9324a9be21fb17)
@@ -0,0 +1,1 @@
+17
Index: tests/enum_tests/anonymous.cfa
===================================================================
--- tests/enum_tests/anonymous.cfa	(revision 42b739d7d8a375532eac77b64b9324a9be21fb17)
+++ tests/enum_tests/anonymous.cfa	(revision 42b739d7d8a375532eac77b64b9324a9be21fb17)
@@ -0,0 +1,8 @@
+#include <stdio.h>
+enum(unsigned long int ) { nthreads = 17 };
+
+int main() {
+    printf("%lu", nthreads);
+}
+
+
