blob: 0f05f92708bc8fc85a926cc79fe747ab68be13f9 [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
David Tweeda0d58782012-10-25 13:56:30 +00003// RUN: %clang_cc1 -ast-print -x ast - < %t.ast | FileCheck %s
Douglas Gregord0792de2012-05-16 16:31:58 +00004
5@__experimental_modules_import import_decl;
6// CHECK: struct T
7
8int main() {
9 return 0;
10}