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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0248.cs
blob
5fcfe0ac6e0570684e83c2b999f3f7bf4be87bc9
1
// cs0248.cs: Cannot create an array with a negative size
2
// Line: 6
3
4
public class
MainClass
{
5
public static void
Main
() {
6
byte
[]
byteArray
=
new byte
[-
1
];
7
}
8
}
9
10