[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs8800.cs
1 // CS8800: `S': Static classes cannot have primary constructor
2 // Line: 4
3 // Compiler options: -langversion:experimental
4
5 static class S(int i)
6 {
7 }