[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0165-24.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 14
3
4 class X
5 {
6         public static void Main ()
7         {
8                 int i = 3;
9                 switch (i) {
10                 case 1:
11                         float a = 7.0f;
12                         break;
13                 default:
14                         float b = a + 99.0f;
15                         break;
16                 }
17         }
18 }