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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
test-553.cs
blob
4bfe5b437c5ce82eb1d1f2d2f51ece7e4aa25802
1
class
A
2
{
3
public virtual void
Add
(
object
o
)
4
{
5
}
6
}
7
8
class
B
:
A
9
{
10
public virtual bool
Add
(
object
o
)
11
{
12
return false
;
13
}
14
15
public static void
Main
() {}
16
}