Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[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 }