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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0132-2.cs
blob
11d515567b11dc95a0dd91ce00368d2a1522d25c
1
// cs0132.-2cs: `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
}