2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-38.cs
blobe5a05d62235572530486b020d23b67074664da9e
1 // CS1961: The covariant type parameter `V' must be invariantly valid on `Both<U,V>(Covariant<None<Contra<V>>>)'
2 // Line: 9
3 // Compiler options: -langversion:future
5 delegate T Covariant<out T> ();
6 delegate void Contra<in T> (T t);
7 delegate void None<T> (T t);
9 delegate void Both<in U, out V> (Covariant<None<Contra<V>>> b);