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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-848.cs
blob
caf7062ca7cfa01273026f80c2e187a0f9ed47a7
1
using
System
;
2
3
public class
A
<
T
>
4
{
5
}
6
7
class
Program
8
{
9
public static void
Foo
<
TEventArgs
,
TEventHandler
> (
A
<
TEventHandler
>
info
,
Action
<
object
,
TEventArgs
>
action
)
10
{
11
}
12
13
public static void
Main
()
14
{
15
A
<
string
>
pp
=
null
;
16
Foo
(
pp
, (
object
s
,
string
e
) =>
{ }
);
17
}
18
}