[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0306-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 }