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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0504.cs
blob
d21d6577a1f395c316907cef9c5d11bd2c28a0da
1
// CS0504: 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