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
Merge pull request #15293 from lewing/wasm-clean
[mono-project.git]
/
mcs
/
tests
/
gtest-255.cs
blob
cdd324599e4ee5a4f789442b2b88a19124f4861d
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
public static void
Main
()
19
{ }
20
}