repo.or.cz
/
mono.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git]
/
mono
/
tests
/
bug-382986-lib.cs
blob
96bc31626b5e3ec082b4dabf2799e79e5cd1dc3c
1
using
System
;
2
3
namespace
Repro
{
4
public class
Base
{
5
internal protected virtual int
Test
() {
6
return
1
;
7
}
8
}
9
10
public class
Generic
<
T
>
where T
:
Base
{
11
public int
Run
(
T t
) {
12
return
t
.
Test
();
13
}
14
}
15
}