summaryrefslogtreecommitdiff
path: root/test/Modules/public-private.modulemap
blob: ef4ae9885fed7228c6cffb47c5bdf73c6aeb768d (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -fmodules -fmodule-map-file=%s -I%S -include "Inputs/empty.h" /dev/null
// RUN: %clang_cc1 -fmodules -fmodule-map-file=%s -I%S -include "Inputs/dummy.h" /dev/null
module A {
  header "Inputs/empty.h"
  private header "Inputs/empty.h"
}
module B {
  private header "Inputs/dummy.h"
  header "Inputs/dummy.h"
}