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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1585.cs
blob
504eeb40b5a24ac8ca8892d5eb3b0987fd4c6e42
1
// CS1585: 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
}