(cc swift-evolution)

> On Mar 19, 2016, at 8:41 AM, Step C <schristop...@bignerdranch.com> wrote:
> 
> The compiler can tell us when we have broken or not completed conformance, 
> agreed. 
> 
> If we can empower extensions a bit more, we could also fully group each 
> protocol conformance by extension.

How would you “group” conformances for the following 3 protocols?

protocol A {
  func foo()
  func bar()
}
protocol B {
  func bar()
  func baz()
}
protocol C: Equatable {
  func bar()
}


_______________________________________________
swift-evolution mailing list
swift-evolution@swift.org
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to