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