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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
gtest-collectioninit-02.cs
blob
b84ee064d3f1360506cdadf4900dbb70c7c95f6f
1
2
3
using
System
.
Collections
.
Generic
;
4
5
public class
C
6
{
7
public static int
Main
()
8
{
9
var
o
=
new
Dictionary
<
string
,
int
>()
{ { "Foo", 3 }
};
10
if
(
o
[
"Foo"
] !=
3
)
11
return
1
;
12
13
o
=
new
Dictionary
<
string
,
int
>()
{ { "A", 1 }
,
{ "B", 2 }
};
14
15
return
0
;
16
}
17
}
18