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-09.cs
blob
9373e79cbf2cfe00656eaf9d1a055b4e3f89d4f3
1
using
System
;
2
3
class
EscapedQuotedInterpolatedFormatSpecifier
4
{
5
public static int
Main
()
6
{
7
string
ss
=
"ss"
;
8
var
t
= $@
"\4
{ss:\u007B}
\5"
;
9
10
Console
.
WriteLine
(
t
);
11
if
(
t
!= @
"\4ss\5"
)
12
return
1
;
13
14
return
0
;
15
}
16
}