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

cs0418.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b173c83844897a62eb4cdf888db89b52d83d1e79 (plain)
1
2
3
4
5
6
// cs0418.cs: `TestClass': an abstract class cannot be sealed or static
// Line: 4

public abstract sealed class TestClass
{
}