[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0081-3.cs
1 // CS0081: Type parameter declaration must be an identifier not a type
2 // Line: 4
3
4 partial class A<T, bool>
5 {
6 }
7
8 partial class A<T, O>
9 {
10 }