Skip to content

Commit 1f5433f

Browse files
committed
Add regression test for rdar://64759168
1 parent 94e9263 commit 1f5433f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)