linux-packaging-mono/mcs/tests/gtest-optional-20.cs

16 lines
170 B
C#
Raw Normal View History

using System;
public class C
{
static void Test<T>(T value, Func<object, T> postProcessor = null)
{
}
public static int Main ()
{
Test ("");
return 0;
}
}