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
Warnings cleanup
[mcs.git]
/
errors
/
cs1585.cs
blob
2bc23fa9b51b06e2e88bcc5c6300fa0ca7bba558
1
// cs1585.cs: Member modifier `static' must precede the member type and name
2
// Line: 7
3
using
System
;
4
5
class
t
6
{
7
public void static
Main
(
string
[]
args
)
8
{
9
Console
.
WriteLine
(
"Hello"
);
10
}
11
}