[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8197.cs
blobf8538a1fe5b2938787fe32c8086620b8367f1399
1 // CS8197: Cannot infer the type of implicitly-typed out variable `y'
2 // Line: 9
4 public class C
6 public static void Main ()
8 dynamic target = 3;
9 var x = new Test (target, out var y);
13 class Test
15 public Test (int x, out int y)
17 y = 0;