xref: /aosp_15_r20/external/clang/test/Modules/import-decl.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: rm -rf %t
2 // RUN: %clang -fmodules-cache-path=%t -fmodules -x objective-c -I %S/Inputs -emit-ast -o %t.ast %s
3 // RUN: %clang_cc1 -ast-print -x ast - < %t.ast | FileCheck %s
4 
5 @import import_decl;
6 // CHECK: struct T
7 
main()8 int main() {
9   return 0;
10 }
11 
12 // <rdar://problem/15084587>
13 @interface A
14 -method;
15 @end
16 
testImport(A * import)17 void testImport(A *import) {
18   [import method];
19 }
20