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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs8076.cs
blob
a14d74bf821f03ca899993181a3af51e6d2183eb
1
// CS8076: Missing close delimiter `}' for interpolated expression
2
// Line: 8
3
4
public class
Test
5
{
6
public static int
Main
()
7
{
8
var
s
= $
"test { arg "
;
9
}
10
}