repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0653.cs
blob
97a84c5820332ddef521c0a1e318171dad35cf3c
1
// cs0653.cs: 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
}