2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0177-2.cs
blobd761a7d59b555739fb6929cb6fca645e90322676
1 // cs0177-2.cs: The out parameter `f' must be assigned to before control leaves the current method
2 // Line: 5
4 class ClassMain {
5 public static void test2 (int a, out float f)
7 // CS0177
8 if (a == 5)
9 return;
11 f = 8.53F;