linux-packaging-mono/mcs/tests/test-expression-bodied-04.cs

16 lines
154 B
C#
Raw Permalink Normal View History

// Introduced in C#7
class VV
{
VV () => Test ();
~VV () => Test ();
void Test ()
{
}
public static void Main ()
{
}
}