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