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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0132-2.cs
blob
36d0e80220fd5e74a2670ae2028512975c67d027
1
// CS0132: `X.X(int)': The static constructor must be parameterless
2
// Line: 5
3
class
X
{
4
static int
ii
=
55
;
5
static
X
(
int
x
)
6
{
7
}
8
}