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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-496.cs
blob
d8d283d209b1a310dbbfe1ba5eecb846278b08fd
1
using
System
;
2
3
abstract class
Base
4
{
5
internal static
T EndExecute
<
T
> (
object
source
,
string
method
)
where T
:
Base
6
{
7
return null
;
8
}
9
}
10
11
class
Derived
:
Base
12
{
13
internal static
Derived EndExecute
<
TElement
> (
object
source
)
14
{
15
return null
;
16
}
17
}
18
19
class
a
20
{
21
static int
Main
()
22
{
23
Derived
.
EndExecute
<
Derived
> (
null
,
"something"
);
24
return
0
;
25
}
26
}