llvm/clang/test/Modules/Inputs/import-textual/M2/module.modulemap


module M {

  module A {
    header "A/A.h"
    textual header "someheader.h"
    export *
  }

  module B {
    header "B/B.h"
    textual header "someheader.h"
    export *
  }

  export *
}