xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/include-relative.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
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 -x c -verify -fmodules-cache-path=%t -I include-relative %s
6 // REQUIRES: shell
7 
8 // expected-no-diagnostics
9 
10 #include "a.h"
11 
f()12 int f() { return n; }
13