aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/normal-module-map.cpp
blob: 2935c8baa9fcd36d524e2ba5507e3dcafd95874b (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: rm -rf %t
// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map -verify %s 

#include "a1.h"
#include "b1.h"
#include "nested/nested2.h"

int test() {
  return a1 + b1 + nested2;
}