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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1620-3.cs
blob
83d982f3958d313a650444eb2e39788a8feb5f58
1
// CS1620: Argument `#1' is missing `out' modifier
2
// Line: 24
3
4
using
System
;
5
6
namespace
TestNamespace
7
{
8
public class
Test
9
{
10
public
Test
()
11
{
12
int
os
;
13
TestMethod
(
os
);
14
Console
.
WriteLine
(
os
);
15
}
16
17
public void
TestMethod
(
out int
os
)
18
{
19
os
=
3
;
20
}
21
}
22
}
23