linux-packaging-mono/mcs/tests/gtest-lambda-32.cs

13 lines
139 B
C#
Raw Normal View History

using System;
class X
{
const int Value = 1000;
static void Main ()
{
unchecked {
Func<byte> b = () => (byte)X.Value;
}
}
}