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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0132-3.cs
blob
8a7a9ce3e4c3dae94ae585aafa1dd407cde0df4d
1
// CS0132: `Foo.Foo(int)': The static constructor must be parameterless
2
// Line: 10
3
4
class
Foo
5
{
6
static
Foo
()
7
{
8
}
9
10
static
Foo
(
int
x
)
11
{
12
}
13
14
static void
Main
()
15
{
16
}
17
}