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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs8089.cs
blob
45eaed860700ec02a84b541b0d5b6f51d646aed6
1
// CS8089: Empty interpolated expression format specifier
2
// Line: 8
3
4
public class
Test
5
{
6
public static int
Main
()
7
{
8
int
v
=
0
;
9
var
s
= $
"
{v:}
"
;
10
}
11
}