repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-367.cs
blob
00572042fcec5bff5e980daa0c43d9eabdb134e3
1
using
System
;
2
3
class
Foo
{}
4
5
class
Repro
{
6
7
static void
Main
()
8
{
9
}
10
11
static void
Bar
<
TFoo
> (
TFoo foo
)
where TFoo
:
Repro
12
{
13
Baz
(
foo
,
Gazonk
);
14
}
15
16
static void
Baz
<
T
> (
T t
,
Action
<
T
>
a
)
17
{
18
a
(
t
);
19
}
20
21
static void
Gazonk
(
Repro f
)
22
{
23
}
24
}