Files
swift-mirror/test/decl/ext/Inputs/objc_implementation_class_extension.modulemap
Becca Royal-Gordon d33002cb34 Soften objcImpl selector conflict errors
The recent change to make objcImpl examine class extensions has collided with a workaround some projects were employing where they declared class extension member implementations `private`. Now that we’re checking class extensions in objcImpl extensions, this workaround is creating selector conflict errors in some circumstances. Soften selector conflict errors in objcImpl extensions to warnings so the affected projects continue to build.

Fixes rdar://123347290.
2024-02-23 21:15:17 -08:00

10 lines
233 B
Plaintext

module objc_implementation_class_extension {
header "objc_implementation_class_extension.h"
export *
}
module objc_implementation_class_extension_internal {
header "objc_implementation_class_extension_internal.h"
export *
}