Douglas Gregor | d0792de | 2012-05-16 16:31:58 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Douglas Gregor | 953a61f | 2013-02-07 19:01:24 +0000 | [diff] [blame] | 2 | // RUN: %clang -fmodules-cache-path=%t -fmodules -x objective-c -I %S/Inputs -emit-ast -o %t.ast %s |
David Tweed | a0d5878 | 2012-10-25 13:56:30 +0000 | [diff] [blame] | 3 | // RUN: %clang_cc1 -ast-print -x ast - < %t.ast | FileCheck %s |
Douglas Gregor | d0792de | 2012-05-16 16:31:58 +0000 | [diff] [blame] | 4 | |
Douglas Gregor | 1b257af | 2012-12-11 22:11:52 +0000 | [diff] [blame] | 5 | @import import_decl; |
Douglas Gregor | d0792de | 2012-05-16 16:31:58 +0000 | [diff] [blame] | 6 | // CHECK: struct T |
| 7 | |
| 8 | int main() { |
| 9 | return 0; |
| 10 | } |