mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
dac8d666ee
These flags are now no-ops.
12 lines
289 B
Swift
12 lines
289 B
Swift
// RUN: not %target-swift-frontend -typecheck %s -debug-generic-signatures 2>&1 | %FileCheck %s
|
|
|
|
// CHECK-LABEL: circular_protocol_superclass.(file).A@
|
|
// CHECK-NEXT: Requirement signature: <Self where Self : a>
|
|
protocol A : a {
|
|
associatedtype e : a
|
|
}
|
|
|
|
class a : A {
|
|
typealias e = a
|
|
}
|