0183-negenum.c (102B)
1 enum JSONError { 2 JSON_ERROR_MEM = -2, 3 JSON_ERROR_INVALID = -1 4 }; 5 6 int 7 main(void) 8 { 9 return 0; 10 }