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-090.cs
blob
8ba94c1427edbf0427fb071d754d72471500c79b
1
using
System
;
2
3
public abstract class
Foo
<
T
>
4
{
5
public virtual
T InsertAll
<
U
> (
U u
)
6
where U
:
T
7
{
8
return
u
;
9
}
10
}
11
12
public class
Bar
<
T
> :
Foo
<
T
>
13
{
14
public override
T InsertAll
<
U
> (
U u
)
15
{
16
return
u
;
17
}
18
}
19
20
class
X
21
{
22
static void
Main
()
23
{ }
24
}