Initial set of Ward sgen annotations (#5705)
[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 }