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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
test-interpolation-04.cs
blob
850f22b06b29095a312ae729ba4cfb935b263f6f
1
using
System
;
2
3
public static class
Test
4
{
5
public static int
Main
()
6
{
7
string
s
;
8
s
= $
"T
{ "v" }
"
;
9
if
(
s
!=
"T v"
)
10
return
1
;
11
12
s
= $
"T
{ "v" + "2" }
"
;
13
if
(
s
!=
"T v2"
)
14
return
2
;
15
16
return
0
;
17
}
18
}