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