enum.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /* Copyright (C) 2024 Gtker
  2. * This file is part of M2-Planet.
  3. *
  4. * M2-Planet is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * M2-Planet is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. enum specific_no_trailing_comma {
  18. SNTC_ZERO = 0,
  19. SNTC_ONE = 1
  20. };
  21. enum specific_trailing_comma {
  22. STC_ZERO = 0,
  23. STC_ONE = 1,
  24. };
  25. enum automatic_no_trailing_comma {
  26. ANTC_ZERO,
  27. ANTC_ONE
  28. };
  29. enum automatic_trailing_comma {
  30. ATC_ZERO,
  31. ATC_ONE,
  32. };
  33. enum specific_and_automatic_no_trailing_comma {
  34. SAANTC_TEN = 10,
  35. SAANTC_ELEVEN,
  36. SAANTC_ONE = 1,
  37. SAANTC_TWO
  38. };
  39. enum specific_and_automatic_trailing_comma {
  40. SAATC_TEN = 10,
  41. SAATC_ELEVEN,
  42. SAATC_ONE = 1,
  43. SAATC_TWO,
  44. };
  45. enum {
  46. ANONYMOUS_ZERO,
  47. ANONYMOUS_ONE,
  48. };
  49. enum complex_assignments {
  50. CA_TEN = SAATC_TEN,
  51. CA_ELEVEN,
  52. CA_ELEVEN2 = CA_ELEVEN,
  53. CA_ELEVEN3 = CA_ELEVEN2,
  54. };
  55. typedef enum specific_trailing_comma SpecificTrailingComma;
  56. struct contains_enum {
  57. enum specific_trailing_comma specificTrailingComma;
  58. SpecificTrailingComma specificTrailingComma1;
  59. };
  60. struct contains_enum_pointer {
  61. enum specific_trailing_comma* specificTrailingComma;
  62. SpecificTrailingComma* specificTrailingComma1;
  63. };
  64. struct contains_enum_pointer_pointer {
  65. enum specific_trailing_comma** specificTrailingComma;
  66. SpecificTrailingComma** specificTrailingComma1;
  67. };
  68. int tests_enum(enum specific_trailing_comma specificTrailingComma, SpecificTrailingComma specificTrailingComma1) {
  69. if (specificTrailingComma != 0) {
  70. return 1;
  71. }
  72. if (specificTrailingComma1 != 0) {
  73. return 1;
  74. }
  75. return 0;
  76. }
  77. int tests_enum_pointer_pointers(enum specific_trailing_comma** specificTrailingComma, SpecificTrailingComma** specificTrailingComma1) {
  78. if (**specificTrailingComma != 0) {
  79. return 1;
  80. }
  81. if (**specificTrailingComma1 != 0) {
  82. return 1;
  83. }
  84. return 0;
  85. }
  86. int tests_enum_pointers(enum specific_trailing_comma* specificTrailingComma, SpecificTrailingComma* specificTrailingComma1) {
  87. if (*specificTrailingComma != 0) {
  88. return 1;
  89. }
  90. if (*specificTrailingComma1 != 0) {
  91. return 1;
  92. }
  93. if(tests_enum_pointer_pointers(&specificTrailingComma, &specificTrailingComma1)) {
  94. return 1;
  95. }
  96. return 0;
  97. }
  98. /* Works for some architectures
  99. * https://github.com/oriansj/M2-Planet/issues/63
  100. * int ten = SAATC_TEN;
  101. * enum specific_and_automatic_no_trailing_comma ten_enum = SAANTC_TEN;
  102. */
  103. int main() {
  104. if(SNTC_ZERO != 0) {
  105. return 1;
  106. }
  107. if (SNTC_ONE != 1) {
  108. return 1;
  109. }
  110. if(STC_ZERO != 0) {
  111. return 1;
  112. }
  113. if (STC_ONE != 1) {
  114. return 1;
  115. }
  116. if(ANTC_ZERO != 0) {
  117. return 1;
  118. }
  119. if (ANTC_ONE != 1) {
  120. return 1;
  121. }
  122. if(ATC_ZERO != 0) {
  123. return 1;
  124. }
  125. if (ATC_ONE != 1) {
  126. return 1;
  127. }
  128. if(SAANTC_TEN != 10) {
  129. return 1;
  130. }
  131. if(SAANTC_ELEVEN != 11) {
  132. return 1;
  133. }
  134. if (SAANTC_ONE != 1) {
  135. return 1;
  136. }
  137. if (SAATC_TWO != 2) {
  138. return 1;
  139. }
  140. if(SAATC_TEN != 10) {
  141. return 1;
  142. }
  143. if(SAATC_ELEVEN != 11) {
  144. return 1;
  145. }
  146. if (SAATC_ONE != 1) {
  147. return 1;
  148. }
  149. if (SAATC_TWO != 2) {
  150. return 1;
  151. }
  152. if (sizeof(enum specific_trailing_comma) != sizeof(int)) {
  153. return 1;
  154. }
  155. if (sizeof(SpecificTrailingComma) != sizeof(enum specific_trailing_comma)) {
  156. return 1;
  157. }
  158. SpecificTrailingComma typedefVariable = STC_ZERO;
  159. int return_value = STC_ZERO;
  160. if(typedefVariable != return_value) {
  161. return 1;
  162. }
  163. enum specific_trailing_comma specificTrailingComma1 = STC_ZERO;
  164. if (specificTrailingComma1 != return_value) {
  165. return 1;
  166. }
  167. struct contains_enum containsEnum;
  168. containsEnum.specificTrailingComma1 = STC_ZERO;
  169. containsEnum.specificTrailingComma = STC_ZERO;
  170. if (containsEnum.specificTrailingComma != 0) {
  171. return 1;
  172. }
  173. if (containsEnum.specificTrailingComma1 != 0) {
  174. return 1;
  175. }
  176. enum specific_trailing_comma* specificTrailingCommaPointer = &specificTrailingComma1;
  177. if(*specificTrailingCommaPointer != 0) {
  178. return 1;
  179. }
  180. if(sizeof(enum specific_trailing_comma*) != sizeof(int*)) {
  181. return 1;
  182. }
  183. struct contains_enum_pointer containsEnumPointer;
  184. containsEnumPointer.specificTrailingComma = &containsEnum.specificTrailingComma;
  185. containsEnumPointer.specificTrailingComma1 = &containsEnum.specificTrailingComma1;
  186. if(*containsEnumPointer.specificTrailingComma != 0) {
  187. return 1;
  188. }
  189. if(*containsEnumPointer.specificTrailingComma1 != 0) {
  190. return 1;
  191. }
  192. enum specific_trailing_comma** specificTrailingCommaPointerPointer = &specificTrailingCommaPointer;
  193. if(**specificTrailingCommaPointerPointer != 0) {
  194. return 1;
  195. }
  196. if(sizeof(enum specific_trailing_comma**) != sizeof(int**)) {
  197. return 1;
  198. }
  199. struct contains_enum_pointer_pointer containsEnumPointerPointer;
  200. containsEnumPointerPointer.specificTrailingComma = &containsEnumPointer.specificTrailingComma;
  201. containsEnumPointerPointer.specificTrailingComma1 = &containsEnumPointer.specificTrailingComma1;
  202. if(**containsEnumPointerPointer.specificTrailingComma != 0) {
  203. return 1;
  204. }
  205. if(**containsEnumPointerPointer.specificTrailingComma1 != 0) {
  206. return 1;
  207. }
  208. if(tests_enum(specificTrailingComma1, typedefVariable)) {
  209. return 1;
  210. }
  211. if(tests_enum_pointers(&specificTrailingComma1, &typedefVariable)) {
  212. return 1;
  213. }
  214. if(ANONYMOUS_ZERO != 0){
  215. return 1;
  216. }
  217. if(ANONYMOUS_ONE != 1){
  218. return 1;
  219. }
  220. if(CA_TEN != 10) return 2;
  221. if(CA_ELEVEN != 11) return 3;
  222. if(CA_ELEVEN2 != 11) return 4;
  223. if(CA_ELEVEN3 != 11) return 5;
  224. /* See comment near ten and ten_enum
  225. if(ten != 10) {
  226. return 1;
  227. }
  228. if(ten_enum != 10) {
  229. return 1;
  230. }
  231. */
  232. return return_value;
  233. }