blob: 0e12d974c4e8bdd82a71b3af21dc1db2cefcbd87 [file] [log] [blame]
// RUN: not %target-swift-frontend %s -parse
protocol A {}
extension A {
final func f() {}
protocol B {
func f()
}
struct S : A, B {}