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
update readme (#21797)
[mono-project.git]
/
mcs
/
tests
/
gtest-288.cs
blob
c0fb1927613b74fad65387e2ebbb12a73897ee28
1
using
System
;
2
3
public abstract class
A
4
{
5
protected bool
Test
(
int
a
)
6
{
7
return
a
==
5
;
8
}
9
}
10
11
public class
B
:
A
12
{
13
public void
Test
()
14
{ }
15
16
class
C
:
A
17
{
18
B b
;
19
20
public bool
Foo
(
int
a
)
21
{
22
return
b
.
Test
(
a
);
23
}
24
}
25
}
26
27
class
X
28
{
29
public static void
Main
()
30
{ }
31
}