implement a missing feature in the #include handler, where
it did not handle <xyz> headers coming from macro expansions.
This requires special treatment, as the include name is lexed
as multiple tokens, which require reassembly before processing.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40418 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Preprocessor/includeexpand2.c b/test/Preprocessor/includeexpand2.c
new file mode 100644
index 0000000..970c9ab
--- /dev/null
+++ b/test/Preprocessor/includeexpand2.c
@@ -0,0 +1,4 @@
+// RUN: clang -Eonly %s -I.
+#  define HEADER <stdio.h>
+
+#  include HEADER