Douglas Gregor | a30cfe5 | 2011-11-11 19:10:28 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
2 | // RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map -verify %s | ||||
3 | |||||
4 | #include "a1.h" | ||||
5 | #include "b1.h" | ||||
6 | #include "nested/nested2.h" | ||||
7 | |||||
8 | int test() { | ||||
9 | return a1 + b1 + nested2; | ||||
10 | } |