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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0178.cs
blob
31e8f096c0fe937a2b83ab1b25ec5185ae20f012
1
// CS0178: Invalid rank specifier: expected `,' or `]'
2
// Line: 8
3
4
public class
Blah
{
5
6
public static void
Main
()
7
{
8
int
[,]
i
=
new int
[][
2
];
9
}
10
}