xref: /aosp_15_r20/external/clang/test/Preprocessor/headermap-rel.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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