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: 97a84c5820332ddef521c0a1e318171dad35cf3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0653.cs: Cannot apply attribute class `AbstractAttribute' because it is abstract
// Line: 10

using System;

abstract class AbstractAttribute: Attribute
{
}

[Abstract]
class TestClass
{
}