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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-391.cs
blob
8c9769101b809d6fe4066f170eae799cd14618b2
1
class
C
2
{
3
void
Foo
(
int
i
)
4
{
5
}
6
7
void
Foo
(
ref int
i
)
8
{
9
}
10
11
void
Bar
(
out bool
b
)
12
{
13
b
=
false
;
14
}
15
16
void
Bar
(
bool
b
)
17
{
18
}
19
20
public static void
Main
()
21
{
22
}
23
}
24
25