Files
swift-mirror/test/IDE/Inputs/custom-modules/module.modulemap
Michael Spencer b2640e15e4 [test] Rename all module.map files to module.modulemap
`module.map` as a module map name has been discouraged since 2014, and
Clang will soon warn on its usage. This patch renames all instances of
`module.map` in the Swift tests to `module.modulemap` in preparation
for this change to Clang.

rdar://106123303
2023-08-21 15:58:59 -07:00

62 lines
809 B
Plaintext

module OmitNeedlessWords {
export *
header "OmitNeedlessWords.h"
}
module ImportedProtocols {
export *
module SubModule {
requires objc
header "ImportedProtocols.h"
}
}
module Newtype {
export *
header "Newtype.h"
}
module NewtypeObjC {
header "NewtypeObjC.h"
export *
}
module ImportAsMember {
export *
module A {
header "ImportAsMember.h"
}
module B {
header "ImportAsMemberB.h"
}
module C {
requires objc
header "ImportAsMemberC.h"
export *
}
module APINotes {
header "ImportAsMemberAPINotes.h"
}
module Class {
requires objc
header "ImportAsMemberClass.h"
}
}
module IAMError {
export *
requires objc
header "ImportAsMemberError.h"
}
module CompatibilityAlias {
header "CompatibilityAlias.h"
export *
}