[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Modules / public-private.modulemap
bloba898a1b74363021fdf114647c69cfc1a038a72f3
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"
8 module B {
9   private header "Inputs/dummy.h"
10   header "Inputs/dummy.h"