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
add comment
[mcs.git]
/
tests
/
test-98.cs
blob
17842abe4071dc24df2542e9d8cf17a8c139e7e0
1
class
X
{
2
int
a
;
3
Y x
;
4
5
void
b
()
6
{
7
if
(
x
.
a
==
1
)
8
return
;
9
}
10
}
11
12
class
Y
:
X
{
13
14
public static int
Main
()
15
{
16
return
0
;
17
}
18
}