blob: f07c88707e76abb20bd7fca6c15e68cda4886fc7 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -E -Wundef -Werror 2>&1 | grep error | count 1 &&
2// RUN: clang-cc %s -E -Werror 2>&1 | not grep error
Chris Lattner116a4b12008-01-23 17:19:46 +00003
4#if foo // Should generate an warning
5#endif
6
7#ifdef foo
8#endif
9
10#if defined(foo)
11#endif
12