xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/exclude-header.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: rm -rf %t
2*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -x objective-c -fmodules -fmodules-cache-path=%t -I %S/Inputs/exclude-header %s -verify
3*0a6a1f1dSLionel Sambuc 
4*0a6a1f1dSLionel Sambuc @import x;
5*0a6a1f1dSLionel Sambuc 
6*0a6a1f1dSLionel Sambuc a var_a;
7*0a6a1f1dSLionel Sambuc b var_b1; // expected-error {{unknown type name 'b'}}
8*0a6a1f1dSLionel Sambuc 
9*0a6a1f1dSLionel Sambuc @import y;
10*0a6a1f1dSLionel Sambuc 
11*0a6a1f1dSLionel Sambuc b var_b2;
12