repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0165-9.cs
blob
04ca61ec70e6a0ea901cf9891d0bad108905b09f
1
// cs0165.cs: 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
}