blob: 56428b3eba65faebc7da9815c6585b2fd36968e7 [file] [log] [blame]
Douglas Gregord0792de2012-05-16 16:31:58 +00001// RUN: rm -rf %t
Douglas Gregor953a61f2013-02-07 19:01:24 +00002// RUN: %clang -fmodules-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
Douglas Gregor1b257af2012-12-11 22:11:52 +00005@import import_decl;
Douglas Gregord0792de2012-05-16 16:31:58 +00006// CHECK: struct T
7
8int main() {
9 return 0;
10}
Douglas Gregora5ba7b42013-11-07 22:55:02 +000011
12// <rdar://problem/15084587>
13@interface A
14-method;
15@end
16
17void testImport(A *import) {
18 [import method];
19}