123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- /* Copyright (C) 2024 Gtker
- * This file is part of M2-Planet.
- *
- * M2-Planet is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * M2-Planet is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
- */
- enum specific_no_trailing_comma {
- SNTC_ZERO = 0,
- SNTC_ONE = 1
- };
- enum specific_trailing_comma {
- STC_ZERO = 0,
- STC_ONE = 1,
- };
- enum automatic_no_trailing_comma {
- ANTC_ZERO,
- ANTC_ONE
- };
- enum automatic_trailing_comma {
- ATC_ZERO,
- ATC_ONE,
- };
- enum specific_and_automatic_no_trailing_comma {
- SAANTC_TEN = 10,
- SAANTC_ELEVEN,
- SAANTC_ONE = 1,
- SAANTC_TWO
- };
- enum specific_and_automatic_trailing_comma {
- SAATC_TEN = 10,
- SAATC_ELEVEN,
- SAATC_ONE = 1,
- SAATC_TWO,
- };
- enum {
- ANONYMOUS_ZERO,
- ANONYMOUS_ONE,
- };
- enum complex_assignments {
- CA_TEN = SAATC_TEN,
- CA_ELEVEN,
- CA_ELEVEN2 = CA_ELEVEN,
- CA_ELEVEN3 = CA_ELEVEN2,
- };
- typedef enum specific_trailing_comma SpecificTrailingComma;
- struct contains_enum {
- enum specific_trailing_comma specificTrailingComma;
- SpecificTrailingComma specificTrailingComma1;
- };
- struct contains_enum_pointer {
- enum specific_trailing_comma* specificTrailingComma;
- SpecificTrailingComma* specificTrailingComma1;
- };
- struct contains_enum_pointer_pointer {
- enum specific_trailing_comma** specificTrailingComma;
- SpecificTrailingComma** specificTrailingComma1;
- };
- int tests_enum(enum specific_trailing_comma specificTrailingComma, SpecificTrailingComma specificTrailingComma1) {
- if (specificTrailingComma != 0) {
- return 1;
- }
- if (specificTrailingComma1 != 0) {
- return 1;
- }
- return 0;
- }
- int tests_enum_pointer_pointers(enum specific_trailing_comma** specificTrailingComma, SpecificTrailingComma** specificTrailingComma1) {
- if (**specificTrailingComma != 0) {
- return 1;
- }
- if (**specificTrailingComma1 != 0) {
- return 1;
- }
- return 0;
- }
- int tests_enum_pointers(enum specific_trailing_comma* specificTrailingComma, SpecificTrailingComma* specificTrailingComma1) {
- if (*specificTrailingComma != 0) {
- return 1;
- }
- if (*specificTrailingComma1 != 0) {
- return 1;
- }
- if(tests_enum_pointer_pointers(&specificTrailingComma, &specificTrailingComma1)) {
- return 1;
- }
- return 0;
- }
- /* Works for some architectures
- * https://github.com/oriansj/M2-Planet/issues/63
- * int ten = SAATC_TEN;
- * enum specific_and_automatic_no_trailing_comma ten_enum = SAANTC_TEN;
- */
- int main() {
- if(SNTC_ZERO != 0) {
- return 1;
- }
- if (SNTC_ONE != 1) {
- return 1;
- }
- if(STC_ZERO != 0) {
- return 1;
- }
- if (STC_ONE != 1) {
- return 1;
- }
- if(ANTC_ZERO != 0) {
- return 1;
- }
- if (ANTC_ONE != 1) {
- return 1;
- }
- if(ATC_ZERO != 0) {
- return 1;
- }
- if (ATC_ONE != 1) {
- return 1;
- }
- if(SAANTC_TEN != 10) {
- return 1;
- }
- if(SAANTC_ELEVEN != 11) {
- return 1;
- }
- if (SAANTC_ONE != 1) {
- return 1;
- }
- if (SAATC_TWO != 2) {
- return 1;
- }
- if(SAATC_TEN != 10) {
- return 1;
- }
- if(SAATC_ELEVEN != 11) {
- return 1;
- }
- if (SAATC_ONE != 1) {
- return 1;
- }
- if (SAATC_TWO != 2) {
- return 1;
- }
- if (sizeof(enum specific_trailing_comma) != sizeof(int)) {
- return 1;
- }
- if (sizeof(SpecificTrailingComma) != sizeof(enum specific_trailing_comma)) {
- return 1;
- }
- SpecificTrailingComma typedefVariable = STC_ZERO;
- int return_value = STC_ZERO;
- if(typedefVariable != return_value) {
- return 1;
- }
- enum specific_trailing_comma specificTrailingComma1 = STC_ZERO;
- if (specificTrailingComma1 != return_value) {
- return 1;
- }
- struct contains_enum containsEnum;
- containsEnum.specificTrailingComma1 = STC_ZERO;
- containsEnum.specificTrailingComma = STC_ZERO;
- if (containsEnum.specificTrailingComma != 0) {
- return 1;
- }
- if (containsEnum.specificTrailingComma1 != 0) {
- return 1;
- }
- enum specific_trailing_comma* specificTrailingCommaPointer = &specificTrailingComma1;
- if(*specificTrailingCommaPointer != 0) {
- return 1;
- }
- if(sizeof(enum specific_trailing_comma*) != sizeof(int*)) {
- return 1;
- }
- struct contains_enum_pointer containsEnumPointer;
- containsEnumPointer.specificTrailingComma = &containsEnum.specificTrailingComma;
- containsEnumPointer.specificTrailingComma1 = &containsEnum.specificTrailingComma1;
- if(*containsEnumPointer.specificTrailingComma != 0) {
- return 1;
- }
- if(*containsEnumPointer.specificTrailingComma1 != 0) {
- return 1;
- }
- enum specific_trailing_comma** specificTrailingCommaPointerPointer = &specificTrailingCommaPointer;
- if(**specificTrailingCommaPointerPointer != 0) {
- return 1;
- }
- if(sizeof(enum specific_trailing_comma**) != sizeof(int**)) {
- return 1;
- }
- struct contains_enum_pointer_pointer containsEnumPointerPointer;
- containsEnumPointerPointer.specificTrailingComma = &containsEnumPointer.specificTrailingComma;
- containsEnumPointerPointer.specificTrailingComma1 = &containsEnumPointer.specificTrailingComma1;
- if(**containsEnumPointerPointer.specificTrailingComma != 0) {
- return 1;
- }
- if(**containsEnumPointerPointer.specificTrailingComma1 != 0) {
- return 1;
- }
- if(tests_enum(specificTrailingComma1, typedefVariable)) {
- return 1;
- }
- if(tests_enum_pointers(&specificTrailingComma1, &typedefVariable)) {
- return 1;
- }
- if(ANONYMOUS_ZERO != 0){
- return 1;
- }
- if(ANONYMOUS_ONE != 1){
- return 1;
- }
- if(CA_TEN != 10) return 2;
- if(CA_ELEVEN != 11) return 3;
- if(CA_ELEVEN2 != 11) return 4;
- if(CA_ELEVEN3 != 11) return 5;
- /* See comment near ten and ten_enum
- if(ten != 10) {
- return 1;
- }
- if(ten_enum != 10) {
- return 1;
- }
- */
- return return_value;
- }
|