xref: /aosp_15_r20/external/clang/test/Modules/include-relative.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 // RUN: cp -r %S/Inputs/include-relative %t/include-relative
4 // RUN: cd %t
5 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c -verify -fmodules-cache-path=%t -I include-relative %s
6 
7 // expected-no-diagnostics
8 
9 #include "a.h"
10 
f()11 int f() { return n; }
12