repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update
[mcs.git]
/
tests
/
gtest-207.cs
blob
a718af57290a98719d9ff1b4887a187243f73132
1
// Note that this test actually checks if we compiled mscorlib.dll properly.
2
3
class
M
{
4
static void
p
(
string
x
) {
5
System
.
Console
.
WriteLine
(
x
);
6
}
7
8
static void
Main
() {
9
string
[]
arr
=
new string
[]
{ "a", "b", "c" }
;
10
System
.
Array
.
ForEach
(
arr
,
p
);
11
}
12
}