[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / test-tuple-10.cs
blob82f4e01ec1f53e85be2ba03eb1b742f0cbcfb4ce
1 using System.Linq;
3 class Program {
4 public static int Main ()
6 var l = (from f in (typeof (Program)).GetFields() select (name: f.Name, offset: 0)).ToList();
7 return 0;