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
* TaskLoggingHelper.cs (LogErrorFromException): Add missing overload.
[mcs.git]
/
tests
/
gtest-anon-16.cs
blob
dadb22a676ee8b7827d2c69ab8703ea00ef5cbe4
1
// Bug #79972
2
delegate void
TestFunc
<
T
>(
T val
);
3
4
class
A
5
{
6
public
A
(
TestFunc
<
int
>
func
)
{ }
7
8
static void
Main
()
9
{ }
10
}
11
12
class
TestClass
13
{
14
readonly
A a
=
new
A
(
delegate
(
int
a
)
{ }
);
15
static void
Func
<
T
>(
TestFunc
<
T
>
func
)
{ }
16
}