2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0306-3.cs
1 // CS0306: The type `System.ArgIterator' may not be used as a type argument
2 // Line: 6
3
4 class G<T> {}
5
6 class C : G<System.ArgIterator>
7 {
8 }