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