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
Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git]
/
mcs
/
tests
/
test-anon-114.cs
blob
fcc7b0bc158e8df13d8cbe03689479809d50c982
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
public static void
Main
()
10
{ }
11
}