Files
swift-mirror/validation-test/compiler_crashers_2_fixed/sr13982.swift
2021-02-11 16:33:35 -05:00

12 lines
316 B
Swift

// RUN: not %target-swift-frontend -emit-ir %s
public protocol ProtoDelegate where Self.Manager.Delegate: Self {
associatedtype Manager: ProtoManager
func bind(to: Manager)
}
public protocol ProtoManager where Self.Delegate.Manager: Self {
associatedtype Delegate: ProtoDelegate
var name: String { get }
}