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