Files
linux-packaging-mono/mcs/errors/cs8800.cs

7 lines
147 B
C#
Raw Normal View History

// CS8800: `S': Static classes cannot have primary constructor
// Line: 4
// Compiler options: -langversion:experimental
static class S(int i)
{
}