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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0165-4.cs
blob
a5168c5866785ccb08c6273b3310e51a010b8e63
1
// CS0165: 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
}