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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0165-12.cs
blob
f92a873c489e6eaeb4ee17edc2c528d9b7ad3e65
1
// cs0165-12.cs: Use of unassigned local variable `foo'
2
// Line: 17
3
4
class
X
5
{
6
static void
Main
()
7
{
8
int
foo
;
9
10
int
i
=
0
;
11
if
(
i
==
1
)
12
goto
e
;
13
14
goto
f
;
15
16
b
:
17
i
+=
foo
;
18
19
c
:
20
goto
b
;
21
22
e
:
23
foo
=
5
;
24
25
f
:
26
goto
c
;
27
}
28
}