Files
swift-mirror/test/Serialization/Recovery/Inputs/custom-modules/module.modulemap
Jordan Rose ff7c6f6702 [Serialization] Drop a class if the superclass can't be found
...instead of crashing. Also drop the class if its generic
requirements depend on a type that can't be loaded (instead of
crashing).

rdar://problem/50125674
2019-05-17 10:25:01 -07:00

16 lines
476 B
Plaintext

module IndirectImport {
header "IndirectImport.h"
export *
}
module IndirectlyImported {
header "IndirectlyImported.h"
}
module Overrides { header "Overrides.h" }
module ProtocolInheritance { header "ProtocolInheritance.h" }
module RenameAcrossVersions { header "RenameAcrossVersions.h" }
module SuperclassObjC { header "SuperclassObjC.h" }
module Typedefs { header "Typedefs.h" }
module TypeRemovalObjC { header "TypeRemovalObjC.h" }
module Types { header "Types.h" }