Avatar
omochimetaru 4/2/2019 9:17 AM
@swift-4.2.4 protocol Q {} protocol P { associatedtype T : Q } class C<T> : P where T : Q {} func foo<U, T>(_: U, _: T) where U : P, U : C<T> {}