// CS1961: The covariant type parameter `V' must be invariantly valid on `Both(Covariant>>)' // Line: 8 delegate T Covariant (); delegate void Contra (T t); delegate void None (T t); delegate void Both (Covariant>> b);