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
/
cs0165-21.cs
blob
2f6bbc1a4e6dcb2a49e47b73ce1c9699ea5d2db9
1
// CS0165: Use of unassigned local variable `v'
2
// Line: 17
3
4
using
System
;
5
6
class
C
7
{
8
void
Test
(
int
arg
)
9
{
10
int
v
;
11
switch
(
arg
) {
12
case
1
:
13
v
=
0
;
14
break
;
15
}
16
17
Console
.
WriteLine
(
v
);
18
}
19
}