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
/
cs1612-4.cs
blob
45e5966fb9c819f157d401c2983811b2f240f115
1
// CS1612: Cannot modify a value type return value of `X.P'. Consider storing the value in a temporary variable
2
// Line: 9
3
4
using
System
;
5
class
X
{
6
static void
Main
()
7
{
8
9
bar
(
out
P
.
x
);
10
Console
.
WriteLine
(
"Got: "
+
P
.
x
);
11
}
12
13
static void
bar
(
out int
x
)
{ x = 10; }
14
15
static
G P
{
16
get
{
17
return
g
;
18
}
19
}
20
21
static
G g
=
new
G
();
22
23
struct
G
{
24
public int
x
;
25
}
26
}
27