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