summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8800.cs
blob: 8daa76e58aa8ca7e76108a9178c8f97a9507afeb (plain)
1
2
3
4
5
6
7
// CS8800: `S': Static classes cannot have primary constructor
// Line: 4
// Compiler options: -langversion:experimental

static class S(int i)
{
}