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