[unit-tests] Fix Makefile.am when Mono is compiled with LLVM
[mono-project.git] / mcs / errors / cs1961-18.cs
blob6b898dadb62d537d2cf3a981ff2351d22dd05023
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>.A'
2 // Line: 8
4 interface A<T>
8 interface B<out T>
10 A<T> A { get; }