blob: a0736c3b6f099913bdc9b71e37278044bbcf1e49 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-ir -module-name test %S/Inputs/protocol-extension-init-helper.swift -primary-file %s
// SE-9233: compute layout when emitting an other-constructor reference
extension P {
public init(possibly: Bool) {
self.init()
}
}