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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1620-4.cs
blob
512b16f7355128d3b48e3b59d1ce6f25003b2c23
1
// CS1620: Argument `#1' is missing `out' modifier
2
// Line: 13
3
4
public class
Programa
5
{
6
static void
Jajaja
(
out int
mengano
)
7
{
8
mengano
=
3
;
9
}
10
11
static void
Run
(
out int
mengano
)
12
{
13
Jajaja
(
mengano
);
14
}
15
}