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-9.cs
blob
4f2a1e066cf693b93a63f45c3682c6f0fcd30294
1
// CS0165: Use of unassigned local variable `s'
2
// Line: 16
3
4
using
System
;
5
6
public class
Test
7
{
8
public int
i
;
9
10
public void
Hoge
()
11
{
12
if
(
i
>
0
)
13
goto
Fuga
;
14
string
s
=
"defined later"
;
15
Fuga
:
16
Console
.
WriteLine
(
s
);
17
}
18
}