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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0028.cs
blob
68fcf4ad8d3546c2f2c922437d56fc5e680b4455
1
// CS0028: `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