Douglas Gregor | d620a84 | 2011-12-06 17:16:41 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
| 2 | // RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fauto-module-import -F %S/Inputs %s -verify |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame^] | 3 | // RUN: %clang_cc1 -x objective-c++ -Wauto-import -fmodule-cache-path %t -fauto-module-import -F %S/Inputs %s -verify |
Douglas Gregor | d620a84 | 2011-12-06 17:16:41 +0000 | [diff] [blame] | 4 | |
| 5 | __import_module__ DependsOnModule; |
| 6 | |
| 7 | void testSubFramework() { |
| 8 | float *sf1 = sub_framework; // expected-error{{use of undeclared identifier 'sub_framework'}} |
| 9 | } |
| 10 | |
| 11 | __import_module__ DependsOnModule.SubFramework; |
| 12 | |
| 13 | void testSubFrameworkAgain() { |
| 14 | float *sf2 = sub_framework; |
| 15 | double *sfo1 = sub_framework_other; |
| 16 | } |
| 17 | |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame^] | 18 | #ifdef __cplusplus |
| 19 | __import_module__ DependsOnModule.CXX; |
| 20 | |
| 21 | CXXOnly cxxonly; |
| 22 | #endif |