blob: 33637952b79257e3542934a550243a03ab9d2d7c [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001// RUN: clang %s -fno-caret-diagnostics 2>&1 | grep 'file successfully included' | wc -l | grep 3
2
3// XX expands to nothing.
4#define XX
5
6#define FILE "file_to_include.h"
7#include XX FILE
8
9#include FILE
10
11
12#include "file_to_include.h"