blob: 3f03af4e219215ef92df415850074c11120ed228 (
plain)
1
2
3
4
5
6
7
|
// CS1644: Feature `generic type variance' cannot be used because it is not part of the C# 3.0 language specification
// Line: 5
// Compiler options: -langversion:3
public interface IFoo<in T>
{
}
|