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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
gtest-etree-13.cs
blob
5e2cdc3d579ec17a11cc8492b2eb3cda26208344
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
Linq
;
4
using
System
.
Linq
.
Expressions
;
5
6
class
Program
7
{
8
public static int
Main
()
9
{
10
foreach
(
int
o
in
Test
<
bool
> (
1
)) {
11
}
12
13
return
0
;
14
}
15
16
static
IEnumerable
<
int
>
Test
<
T
> (
int
i
)
17
{
18
Expression
<
Func
<
int
>>
e
= () =>
i
;
19
yield return
1
;
20
}
21
}