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