31 lines · plain
1// See vfsoverlay.yaml2module ModuleNeedsVFS {3 header "ModuleNeedsVFS.h"4 export *5}6framework module * { }7 8module ModuleUndef { header "module-undef.h" }9 10module PreambleWithImplicitImport {11 module A {12 header "preamble-with-implicit-import-A.h"13 }14 module B {15 header "preamble-with-implicit-import-B.h"16 export *17 }18 module C {19 header "preamble-with-implicit-import-C.h"20 export *21 }22}23 24module hidden_redecls {25 header "hidden-redecls.h"26 27 explicit module sub {28 header "hidden-redecls-sub.h"29 }30}31