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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0504.cs
blob
88fab1e72f43162d0a2e1b7dada272162f70ab37
1
// cs0504.cs: The constant `Sample.constant' cannot be marked static
2
// Line: 5
3
4
class
Sample
{
5
static const bool
constant
=
false
;
6
}
7
8
9