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

cs0653.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5f32a94ce50b0e9505f0377691052e39ce1461c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0641.cs: Cannot apply attribute class 'Abstract' because it is abstract
// Line: 10

using System;

abstract class AbstractAttribute: Attribute
{
}

[Abstract]
class TestClass
{
}