summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0653.cs
blob: c53766c112b55db5ce3dc4272670fbfcdcb3b5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0653: Cannot apply attribute class `AbstractAttribute' because it is abstract
// Line: 10

using System;

abstract class AbstractAttribute: Attribute
{
}

[Abstract]
class TestClass
{
}