repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Warnings cleanup
[mcs.git]
/
tests
/
test-383.cs
blob
49fb0ca453f337029211cf61469cdada47441e13
1
using
System
;
2
3
public class
X
4
{
5
public readonly int
Data
;
6
7
public
X
testme
(
out int
x
)
8
{
9
x
=
1
;
10
return this
;
11
}
12
13
public
X
()
14
{
15
int
x
,
y
;
16
17
y
=
this
.
testme
(
out
x
).
Data
;
18
Console
.
WriteLine
(
"X is
{0}
"
,
x
);
19
}
20
21
public static void
Main
()
22
{
23
X x
=
new
X
();
24
}
25
}