blob: 76966934acc88cb0fdd216e5560fd2d2de3496f8 [file] [log] [blame]
Douglas Gregord0792de2012-05-16 16:31:58 +00001// RUN: rm -rf %t
2// RUN: %clang -fmodule-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@__experimental_modules_import import_decl;
6// CHECK: struct T
7
8int main() {
9 return 0;
10}