diff -r 000000000000 -r 6474c204b198 js/src/tests/style/BadIncludes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/js/src/tests/style/BadIncludes.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,11 @@ +// Note: the #if/#elif conditions are to get past the #include order checking. +#if A +#include "tests/style/BadIncludes.h" // bad: self-include +#include "tests/style/BadIncludes2.h" // ok +#elif B +#include "BadIncludes2.h" // bad: not a full path +#elif C +#include // bad: <> form used for local file +#elif D +#include "stdio.h" // bad: "" form used for system file +#endif