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
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0681.cs
blob
4c801e4d1c45047170264154dbe947ec9d03d1d8
1
// cs0681: The modifier 'abstract' is not valid on fields. Try using a property instead
2
// Line: 5
3
4
class
X
{
5
abstract const int
name
=
3
;
6
7
static void
Main
() {}
8
}