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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0028.cs
blob
db90d20a94939ce15479f7a1b5c1ad54ef3d96a6
1
// cs0028.cs: `T.Main(int)' has the wrong signature to be an entry point
2
// Line: 8
3
// Compiler options: -warnaserror -warn:4
4
5
class
T
{
6
public static int
Main
()
7
{
8
}
9
public static int
Main
(
int
foo
)
10
{
11
}
12
}
13