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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1920.cs
blob
e13dd53655b7923f8c561a29fb56fd6ef914813c
1
// CS1920: An element initializer cannot be empty
2
// Line: 11
3
4
5
using
System
.
Collections
.
Generic
;
6
7
public class
Test
8
{
9
static void
Main
()
10
{
11
var
d
=
new
Dictionary
<
string
,
int
>
{ { }
};
12
}
13
}