Files
swift-mirror/test/Generics/rdar139232031.swift
2024-11-04 23:36:57 -05:00

9 lines
132 B
Swift

// RUN: %target-typecheck-verify-swift
protocol P1 {
associatedtype A
associatedtype B
}
protocol P2<A>: P1 where B: P2<A> {}