Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0165-4.cs
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 }