ldmud/test/t-language/tf-cpptrailingelse2.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

7 lines
116 B
C

// Trailing characters after an #else should throw an error.
#pragma pedantic
#if 0
#else this should fail
#endif