[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0177-4.cs
blobbe21c2901a5465492b745676ba1b91d095a2579a
1 // CS0177: The out parameter `f' must be assigned to before control leaves the current method
2 // Line: 5
4 class C {
5 public static void test (int a, out float f)
7 do {
8 // CS0177
9 if (a == 8) {
10 System.Console.WriteLine ("Hello");
11 return;
13 } while (false);
15 f = 1.3F;
16 return;