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