michael@0: // Note: the #if/#elif conditions are to get past the #include order checking. michael@0: #if A michael@0: #include "tests/style/BadIncludes.h" // bad: self-include michael@0: #include "tests/style/BadIncludes2.h" // ok michael@0: #elif B michael@0: #include "BadIncludes2.h" // bad: not a full path michael@0: #elif C michael@0: #include // bad: <> form used for local file michael@0: #elif D michael@0: #include "stdio.h" // bad: "" form used for system file michael@0: #endif