Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0165-4.cs
blobb15573aef06cc6cec2a162bf98f963b8e9c3d8d2
1 // cs0165-4.cs: Use of unassigned local variable `a'
2 // Line: 9
4 class C {
5 public static int test4 ()
7 int a;
9 try {
10 a = 3;
11 } catch {
14 // CS0165
15 return a;