[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8196-2.cs
blobcf58de30ddc79de0d98a55bcb73d9c290a1e1b79
1 // CS8196: Reference to an implicitly typed out variable `x1' is not permitted in the same argument list
2 // Line: 8
4 public class C
6 public static void Main ()
8 Test (out var x1, out x1);
11 static void Test (out int x, out int x2)
13 x = 1;
14 x2 = 2;