repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0653.cs
blob
c53766c112b55db5ce3dc4272670fbfcdcb3b5b2
1
// CS0653: Cannot apply attribute class `AbstractAttribute' because it is abstract
2
// Line: 10
3
4
using
System
;
5
6
abstract class
AbstractAttribute
:
Attribute
7
{
8
}
9
10
[
Abstract
]
11
class
TestClass
12
{
13
}