Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0441.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa65ffcb3dcfcfb4079050426b9da6e601b43dcb (plain)
1
2
3
4
5
6
// cs0441.cs: 'TestClass': a class cannot be both static and sealed
// Line: 4

public sealed static class TestClass
{
}