linux-packaging-mono/mcs/tests/gtest-optional-30-lib.cs

9 lines
122 B
C#
Raw Permalink Normal View History

// Compiler options: -t:library
public static class Lib
{
public static T Foo<T> (T x = default (T))
{
return x;
}
}