summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0306-3.cs
blob: c84537b3a4b408ee77f4a240cd64fc481f504564 (plain)
1
2
3
4
5
6
7
8
// CS0306: The type `System.ArgIterator' may not be used as a type argument
// Line: 6

class G<T> {}

class C : G<System.ArgIterator>
{
}