[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0177-2.cs
1 // CS0177: The out parameter `f' must be assigned to before control leaves the current method
2 // Line: 5
3
4 class ClassMain {
5         public static void test2 (int a, out float f)
6         {
7                 // CS0177
8                 if (a == 5)
9                         return;
10
11                 f = 8.53F;
12         }
13 }
14