Home | History | Annotate | Download | only in Modules
      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 
     12 int f() { return n; }
     13