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
/
cs0514.cs
blob
ee80d82e62086abe14fd944b3a566676d6c09e7a
1
// CS0514: `X.X()': static constructor cannot have an explicit `this' or `base' constructor call
2
// Line: 4
3
class
X
{
4
static
X
() :
base
()
5
{
6
}
7
8
static void
Main
() {}
9
}