[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0177-2.cs
blob9c5eca2933185ff5d1f2e2172691b462e4b6ca31
1 // CS0177: 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;