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