blob: bf07fdcf8bdd6fa3a8758bdd554b061b2155bf63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 13
public class Test
{
static void TestMethod ()
{
}
static void Main ()
{
var e = new[] { TestMethod () };
}
}
|