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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0165-4.cs
blob
b15573aef06cc6cec2a162bf98f963b8e9c3d8d2
1
// cs0165-4.cs: Use of unassigned local variable `a'
2
// Line: 9
3
4
class
C
{
5
public static int
test4
()
6
{
7
int
a
;
8
9
try
{
10
a
=
3
;
11
}
catch
{
12
}
13
14
// CS0165
15
return
a
;
16
}
17
}