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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-902.cs
blob
271035fddbe94b4ba087410709b7ce212e279235
1
abstract class
A
2
{
3
public virtual void
M
(
params
B
[]
b
)
4
{
5
}
6
}
7
8
class
B
:
A
9
{
10
public override void
M
(
B
[]
b2
)
11
{
12
}
13
}
14
15
class
Test2
16
{
17
public static void
Main
()
18
{
19
B b
=
new
B
();
20
A a
=
b
;
21
a
.
M
(
b
,
b
);
22
b
.
M
(
b
,
b
,
b
);
23
}
24
}