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: 7f7c673419df26d850d5afb17441906bb421f421 (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
{
}