[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-29.cs
blob238093d4575a4f46aa1f19745f2451716a725c33
1 // CS0165: Use of unassigned local variable `j'
2 // Line: 10
4 class Test
6 static void Main ()
8 int? i;
9 int? j;
10 int? x = (i = 7) ?? j;