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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0826-5.cs
blob
caf1154da6d628a6294bfc53d93ace0ed1c020a5
1
// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
var
e
=
new
[]
{ delegate {}
};
10
}
11
}
12