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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0826-3.cs
blob
bf07fdcf8bdd6fa3a8758bdd554b061b2155bf63
1
// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2
// Line: 13
3
4
5
public class
Test
6
{
7
static void
TestMethod
()
8
{
9
}
10
11
static void
Main
()
12
{
13
var
e
=
new
[]
{ TestMethod () }
;
14
}
15
}
16