Index: tests/enum_tests/typedIntEnum.c
===================================================================
--- tests/enum_tests/typedIntEnum.c	(revision 3e5439987bdaca8e3f69edabd5a99bb0e41316b1)
+++ tests/enum_tests/typedIntEnum.c	(revision 3e5439987bdaca8e3f69edabd5a99bb0e41316b1)
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+enum(int) IntEnum {
+    zero,
+    one
+};
+
+int main() {
+    printf("zero: %d, one: %d \n", zero, one);
+    return 0;
+}
