mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
16 lines
171 B
Swift
16 lines
171 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
protocol P: class { }
|
|
|
|
protocol Q {
|
|
func g()
|
|
}
|
|
|
|
protocol P { }
|
|
|
|
struct S : Q {
|
|
@_implements(P, g())
|
|
func h() {}
|
|
}
|
|
|