mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
301 B
Swift
11 lines
301 B
Swift
// {"signature":"swift::GenericSignatureImpl::prohibitsIsolatedConformance(swift::Type) const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
protocol a {
|
|
associatedtype b
|
|
typealias c = a
|
|
}
|
|
struct d : e
|
|
protocol e : a {
|
|
associatedtype c where b == c.b
|
|
associatedtype f = Self
|