1 2 // This uses a headermap with this entry: 3 // Foo.h -> Foo/Foo.h 4 5 // RUN: %clang_cc1 -E %s -o %t.i -I %S/Inputs/headermap-rel/foo.hmap -F %S/Inputs/headermap-rel 6 // RUN: FileCheck %s -input-file %t.i 7 8 // CHECK: Foo.h is parsed 9 // CHECK: Foo.h is parsed 10 11 #include "Foo.h" 12 #include "Foo.h" 13