Avatar
swiftbot BOT 9/25/2018 5:57 AM
Author icon
t.ae
protocol Proto { func test() } extension Proto { func test() { print("Proto") } } struct Impl: Proto { func test() { print("Impl") } } let a = Impl() a.test()
Version:
swift-4.1.1-RELEASE
Output:
Impl
Error: