[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-18.cs
blob429d3c7827914568284cfba2de289a45bde81fc9
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 11
4 using System.Linq;
6 class M
8 public static void Main ()
10 int[] a;
11 int m = a.FirstOrDefault<int> ();