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
/
cs1644-60.cs
blob
ca9547bc561cf6fc0ebf4289fad45ce2cb5840d6
1
// CS1644: Feature `discards' cannot be used because it is not part of the C# 6.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:6
4
5
class
X
6
{
7
int
Test
()
8
{
9
_
=
2
;
10
}
11
}