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-55.cs
blob
58384a6f289bf5c17ab119e4d5ecc0621a25a0ae
1
// CS1644: Feature `byref locals and returns' 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
Text
6
{
7
static ref long
Foo
()
8
{
9
throw new
System
.
NotImplementedException
();
10
}
11
}