linux-packaging-mono/mcs/tests/test-tuple-10.cs

9 lines
199 B
C#
Raw Normal View History

using System.Linq;
class Program {
public static int Main ()
{
var l = (from f in (typeof (Program)).GetFields() select (name: f.Name, offset: 0)).ToList();
return 0;
}
}