Avatar
omochimetaru 4/2/2019 7:42 AM
@swift-main 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)