Files
llvm-project/clang/test/Preprocessor/includeexpand.c
Sam Bishop 558447416d Use the -E option when invoking clang. Only the preprocessor is
required to perform this test.

llvm-svn: 48636
2008-03-21 07:02:04 +00:00

13 lines
240 B
C

// RUN: clang -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
// XX expands to nothing.
#define XX
#define FILE "file_to_include.h"
#include XX FILE
#include FILE
#include "file_to_include.h"