linux-packaging-mono/mcs/tests/gtest-etree-28.cs

23 lines
267 B
C#
Raw Normal View History

// Compiler options: -warnaserror
using System;
using System.Linq.Expressions;
class Repro
{
int i = 2;
void UseField ()
{
TakeExpression (() => Console.Write (i));
}
void TakeExpression (Expression<Action> expr)
{
}
public static void Main ()
{
}
}