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] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-decl-expr-03.cs
blob
bc0f01c5f608ca9b399a1378cd6332bae13681a0
1
using
System
;
2
using
System
.
Linq
;
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
var
a
=
"abcdef"
;
9
10
var
t1
=
from
x
in
Foo
(
a
,
out var
q1
)
select
x
;
11
var
t2
=
from
x
in
a
join
y
in
Foo
(
a
,
out var
q2
)
on x equals y
select
x
;
12
}
13
14
public static
T Foo
<
T
> (
T x
,
out
T z
) =>
z
=
x
;
15
}