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