1 // RUN: %clang_cc1 -fmodules -fmodule-map-file=%s -I%S -include "Inputs/empty.h" /dev/null 2 // RUN: %clang_cc1 -fmodules -fmodule-map-file=%s -I%S -include "Inputs/dummy.h" /dev/null 3 module A { 4 header "Inputs/empty.h" 5 private header "Inputs/empty.h" 6 } 7 module B { 8 private header "Inputs/dummy.h" 9 header "Inputs/dummy.h" 10 } 11