Home | History | Annotate | Download | only in Modules
      1 // RUN: rm -rf %t.modules
      2 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t.modules -fmodule-map-file=%s -I%S -include "Inputs/empty.h" /dev/null
      3 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t.modules -fmodule-map-file=%s -I%S -include "Inputs/dummy.h" /dev/null
      4 module A {
      5   header "Inputs/empty.h"
      6   private header "Inputs/empty.h"
      7 }
      8 module B {
      9   private header "Inputs/dummy.h"
     10   header "Inputs/dummy.h"
     11 }
     12