Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1961-39.cs
1 // CS1961: The covariant type parameter `V' must be contravariantly valid on `I<V>.Foo<T>(T)'
2 // Line: 6
3
4 interface I<out V>
5 {
6         void Foo<T> (T t) where T : V;
7 }