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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs8077.cs
blob
4bbc74260e6865428d7d4711db3b5f6ead3a4f5e
1
// CS8077: A single-line comment may not be used in an interpolated string
2
// Line: 8
3
4
public class
Test
5
{
6
public static int
Main
()
7
{
8
var
s
= $
"test
{ arg // comment }
"
;
9
}
10
}