import-decl.cpp revision 953a61f26bf79932b9699b09add4c388764de170
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
8int main() {
9  return 0;
10}
11