blob: 66f70fb3a9e593280a40c4048d876558df3fbd76 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
Chris Lattner72650ad2009-02-04 19:38:12 +00002
3// XX expands to nothing.
4#define XX
5
6// expand macros to get to file to include
7#define FILE "file_to_include.h"
8#include XX FILE
9
10#include FILE
11
12// normal include
13#include "file_to_include.h"
14