blob: 0cb046defa1e479eb1ba3ad0b34cdd4be757e0eb [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol P: class { }
protocol Q {
func g()
}
protocol P { }
struct S : Q {
@_implements(P, g())
func h() {}
}