9 lines
139 B
C#
Raw Normal View History

// CS0306: The type `System.ArgIterator' may not be used as a type argument
// Line: 6
class G<T> {}
class C : G<System.ArgIterator>
{
}