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
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
gtest-named-05.cs
blob
125e60d4b1355e2f9ca7403012de8a6dca062428
1
class
Test
2
{
3
public static void
Main
()
4
{
5
string
p
;
6
M
(
y
:
p
=
F
(),
x
:
p
);
7
8
int
i
;
9
string
p2
;
10
M2
(
out
i
,
c
:
p2
=
F
(),
b
:
p2
);
11
}
12
13
public static void
M
(
string
x
,
string
y
)
14
{
15
}
16
17
static void
M2
(
out int
a
,
string
b
,
string
c
)
18
{
19
a
=
2
;
20
}
21
22
public static string
F
()
23
{
24
return null
;
25
}
26
}