[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0165-5.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
3
4 using System;
5
6 class C {
7         public static int test5 ()
8         {
9                 int a;
10
11                 try {
12                         Console.WriteLine ("TRY");
13                         a = 8;
14                 } catch {
15                         a = 9;
16                 } finally {
17                         // CS0165
18                         Console.WriteLine (a);
19                 }
20
21                 return a;
22         }
23 }