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
/
gtest-265-lib.cs
blob
43abd5e7dea59d641be54afc3a54862a5b33506a
1
// Compiler options: -t:library
2
3
public class
A
:
X
4
{
5
public override void
Whoa
<
T
> (
object
arg
)
6
{
7
}
8
}
9
10
public abstract class
X
11
{
12
// virtual is also buggy
13
public abstract void
Whoa
<
T
> (
object
arg
);
14
}