I’d even suggest to force final for such methods:

protocol Fooable { }
extension Fooable {//  func foo() { }        // error: must be declared as final
    final func foo() { }  // ok
}
_______________________________________________
swift-evolution mailing list
[email protected]
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to