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-255.cs
blob
5a0036bd790b53121edee58edc5112c9ccccf4a6
1
using
System
;
2
3
public abstract class
A
4
{
5
public abstract
T Foo
<
T
> ();
6
}
7
8
public abstract class
B
:
A
9
{
10
public override
T Foo
<
T
> ()
11
{
12
return default
(
T
);
13
}
14
}
15
16
public class
C
:
B
17
{
18
static void
Main
()
19
{ }
20
}