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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-interpolation-08.cs
blob
f617c523878cb797f22658dee72a76db9b309e3c
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
public class
Program
5
{
6
public static int
Main
()
7
{
8
var
x
= $@
"({
9
new Dictionary<int, object> {
10
{ 1, "bbb" }
11
}.Count
12
});"
;
13
14
if
(
x
!=
"(1);"
)
15
return
1
;
16
17
return
0
;
18
}
19
}