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 94e9263 commit 1f5433fCopy full SHA for 1f5433f
validation-test/compiler_crashers_2_fixed/rdar64759168.swift
@@ -0,0 +1,15 @@
1
+// RUN: %target-swift-frontend -emit-ir %s
2
+
3
+public class Clazz {}
4
5
+public protocol SelectableFieldValueProtocol {}
6
7
+public protocol FieldProtocol {
8
+ associatedtype SelectableValue : SelectableFieldValueProtocol
9
+}
10
11
+public protocol SelectFieldValueCoordinatorDelegate {
12
+ associatedtype Field : Clazz, FieldProtocol
13
14
15
+public class SelectFieldValueCoordinator<Field, Delegate : SelectFieldValueCoordinatorDelegate> where Field == Delegate.Field {}
0 commit comments