Avatar
Avatar
fummicc1
@swift-main enum SomeError: Error {} protocol MyProtocol { init(param: String) throws init(param: String) throws(SomeError) }
swiftNightly BOT 6/30/2024 6:57 AM
exit status: 1 with <stdin>:5:5: error: invalid redeclaration of 'init(param:)' 3 | protocol MyProtocol { 4 | init(param: String) throws 5 | init(param: String) throws(SomeError) | `- error: invalid redeclaration of 'init(param:)' 6 | } 7 |