Avatar
Avatar
fummicc1
@swift-main import Foundation protocol MyProtocol { func a(param: String) throws(any LocalizedError) }
swiftNightly BOT 6/30/2024 7:02 AM
exit status: 1 with <stdin>:4:34: error: thrown type 'any LocalizedError' does not conform to the 'Error' protocol 2 | 3 | protocol MyProtocol { 4 | func a(param: String) throws(any LocalizedError) | `- error: thrown type 'any LocalizedError' does not conform to the 'Error' protocol 5 | } 6 |