We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edf426 commit 5acd795Copy full SHA for 5acd795
validation-test/compiler_crashers_2_fixed/sr13982.swift
@@ -0,0 +1,11 @@
1
+// RUN: not %target-swift-frontend -emit-ir %s
2
+
3
+public protocol ProtoDelegate where Self.Manager.Delegate: Self {
4
+ associatedtype Manager: ProtoManager
5
+ func bind(to: Manager)
6
+}
7
8
+public protocol ProtoManager where Self.Delegate.Manager: Self {
9
+ associatedtype Delegate: ProtoDelegate
10
+ var name: String { get }
11
0 commit comments