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
/
gtest-etree-06.cs
blob
f1804e218a5a1c143db3e144334eed6ff4cf0ff5
1
using
System
;
2
using
System
.
Linq
.
Expressions
;
3
4
public class
Test
5
{
6
public static int
Main
()
7
{
8
Expression
<
Func
<
int
>>
f
= (() =>
Value
());
9
return
f
.
Compile
().
Invoke
();
10
}
11
12
private static int
Value
()
13
{
14
return
0
;
15
}
16
}