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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-linq-28.cs
blob
edcc93f52ec8cee5cf19696ad9c60967130f8eec
1
using
System
;
2
using
System
.
Linq
;
3
4
class
C
5
{
6
public static int
Main
()
7
{
8
var
r
=
from
m
in
"ab"
9
let
n
=
from
n
in
"xyz"
select
n
10
select
n
;
11
12
int
counter
=
0
;
13
foreach
(
var
a
in
r
) {
14
foreach
(
var
b
in
a
) {
15
Console
.
WriteLine
(
b
);
16
counter
++;
17
}
18
}
19
20
if
(
counter
!=
6
)
21
return
1
;
22
23
return
0
;
24
}
25
}