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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-401.cs
blob
d36cc8e797f56aa3a756e69054bcab2e85ac8c74
1
using
System
;
2
3
class
ParserTest
4
{
5
public static void
Main
()
6
{
7
int
[]
ivals
=
{ 2, 5 }
;
8
foreach
(
int
x
in
ivals
)
9
foreach
(
int
y
in
ivals
)
10
Console
.
WriteLine
(
"
{0} {1} {2} {3} {4} {5}
"
,
x
,
y
,
x
+
y
,
x
-
y
,
x
<
y
,
x
>=
y
);
11
}
12
}
13