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
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0826-8.cs
blob
1beedda8bc898222331c6695cb73457a8098f3ed
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
public class
Test
5
{
6
static void
Main
()
7
{
8
var
e
=
new
[]
{ Main }
;
9
}
10
}
11