ldmud/test/t-language/tf-cpptrailingundef.c
Alexander Motzkau 4a138ab90d Warn about trailing characters in all preprocessor statements
Similar to #else and #endif warn about trailing characters
also in #include, #ifdef, #ifndef, #undef and #line statements.
2021-01-25 14:14:36 +01:00

6 lines
131 B
C

// Trailing characters after an #undef should throw an error.
#pragma pedantic
#define WHATEVER
#undef WHATEVER this should fail