source: tests/enum_tests/typedIntEnum.c@ 7a486f4a

ADT ast-experimental enum pthread-emulation qualifiedEnum
Last change on this file since 7a486f4a was a8ef59e, checked in by JiadaL <j82liang@…>, 4 years ago

Add a basic int test

  • Property mode set to 100644
File size: 137 bytes
Line 
1#include <stdio.h>
2
3enum(int) IntEnum {
4 zero,
5 one
6};
7
8int main() {
9 printf("zero: %d, one: %d \n", zero, one);
10 return 0;
11}
Note: See TracBrowser for help on using the repository browser.