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
/
cs0028-2.cs
blob
017fde1451fc5c016da7df475375addddc2b59c8
1
// CS0028: `T.Main()' has the wrong signature to be an entry point
2
// Line: 6
3
// Compiler options: -warnaserror:28 -warn:4
4
5
class
T
{
6
public static bool
Main
()
7
{
8
return false
;
9
}
10
}
11