blob: 2935c8baa9fcd36d524e2ba5507e3dcafd95874b [file] [log] [blame]
Douglas Gregora30cfe52011-11-11 19:10:28 +00001// 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
8int test() {
9 return a1 + b1 + nested2;
10}