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

cs0502.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b589cba2f756498a6150cdfedcc97edbd06fc5d6 (plain)
1
2
3
4
5
// cs0502.cs: 'Sample' cannot be both abstract and sealed
// Line: 4

abstract sealed class Sample {
}