mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Similar to #else and #endif warn about trailing characters also in #include, #ifdef, #ifndef, #undef and #line statements.
7 lines
116 B
C
7 lines
116 B
C
// Trailing characters after an #else should throw an error.
|
|
|
|
#pragma pedantic
|
|
|
|
#if 1
|
|
#else this should fail
|
|
#endif
|