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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1552.cs
blob
5a06d1f4313aa64a20b33bcd307c9ee6e2807d77
1
// cs1552.cs: Array type specifier, [], must appear before parameter name
2
// Line: 6
3
4
class
T
{
5
// To fix: change (string args[]) to (string [] args)
6
public static int
Main
(
string
args
[])
7
{
8
return
0
;
9
}
10
}