summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-optional-30-lib.cs
blob: 31b5aeef9c3c61c8baa5f5ec8b41b986351cf32d (plain)
1
2
3
4
5
6
7
8
9
// Compiler options: -t:library

public static class Lib
{
	public static T Foo<T> (T x = default (T))
	{
		return x;
	}
}