2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-39.cs
blobd0e2b561b6b33611513177140bb6d10ac74e7045
1 // CS1961: The covariant type parameter `V' must be contravariantly valid on `Foo<T>(T)'
2 // Line: 6
4 interface I<out V>
6 void Foo<T> (T t) where T : V;