[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0177-3.cs
bloba51d989f98dd3682300c012939c81be7455e20c3
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 test3 (out float f)
7 try {
8 f = 8.53F;
9 } catch {
10 return;