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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0826-10.cs
blob
cdd30edd35c6c25f8a7846278205213fccd1489a
1
// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
var
array
=
new
[]
{ null, null }
;
9
}
10
}