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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1644-59.cs
blob
2f8aed6b9581beaa1c1b9c70dccfe56135706c93
1
// CS1644: Feature `readonly references' cannot be used because it is not part of the C# 7.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:7
4
5
class
X
6
{
7
int
i
;
8
9
ref readonly int
Test
()
10
{
11
return ref
i
;
12
}
13
}