Files
swift-mirror/test/decl/ext/Inputs/objc_implementation_private.modulemap
Becca Royal-Gordon 3e4ea43adf Don’t diagnose @_objcImpl conflicts with inherited inits
Previously, Swift would reject an `override public init(…)` in an `@_objcImplementation` because ClangImporter would have already synthesized inherited initializers that conflicted with the overrides. Ignore these spurious conflicts, and also move a check out of IsObjCRequest and into the conflict-handling code.

Additional work towards rdar://70730077.
2022-10-27 17:00:43 -07:00

5 lines
83 B
Plaintext

module objc_implementation_private {
header "objc_implementation.h"
export *
}