summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0441.cs
blob: 266117272490f8df8486b414f835aa887e4ef024 (plain)
1
2
3
4
5
6
// CS0441: `TestClass': a class cannot be both static and sealed
// Line: 4

public sealed static class TestClass
{
}