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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0150.cs
blob
251ba5874931214a80939668f6d132e0b7f70d17
1
// cs0150.cs: A constant value is expected
2
// Line : 12
3
4
using
System
;
5
6
public class
Blah
{
7
8
public static void
Main
()
9
{
10
int
foo
=
6
;
11
12
int
[]
i
=
new int
[
foo
]
{ 0, 1, 2, 3, 4, 5 }
;
13
}
14
}