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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0132.cs
blob
0ed191add1514100a75662eae04e3de55d8222c2
1
// cs0132.cs: `X.X(int)': The static constructor must be parameterless
2
// Line: 4
3
class
X
{
4
static
X
(
int
x
)
5
{
6
}
7
}