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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-462.cs
blob
c417994c029aba8a652d3db7f52d734d147b84ab
1
class
X
{
2
bool
ok
=
false
;
3
4
void
Method
(
X x
)
5
{
6
}
7
8
void
Method
(
string
x
)
9
{
10
ok
=
true
;
11
}
12
13
static int
Main
()
14
{
15
X x
=
new
X
();
16
17
x
.
Method
((
string
)
null
);
18
if
(
x
.
ok
)
19
return
0
;
20
return
1
;
21
}
22
}