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
remove NotWorking
[mcs.git]
/
tests
/
gtest-anon-14.cs
blob
6157a8540bd5f3d6a6e2f3aed8d743ba6ee90735
1
using
System
;
2
3
class
T
{
4
void
SomeMethod
(
Converter
<
Int32
,
Int32
>
converter
) {}
5
void
SomeCaller
() {
6
SomeMethod
(
delegate
(
Int32 a
)
{ return a; }
);
7
}
8
9
static void
Main
()
10
{ }
11
}