[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-exmethod-44.cs
blob3586a730934441012fff166b70395949b3db5331
1 // Compiler options: -warnaserror
3 using System;
4 using System.Linq;
6 namespace UnusedFieldWarningTest2
8 class Repro
10 int[] a = new int[] { 1 };
12 void Foo ()
14 Console.Write (a.FirstOrDefault ());
17 public static void Main ()