linux-packaging-mono/mcs/tests/gtest-exmethod-09.cs

18 lines
176 B
C#
Raw Normal View History

static class Test
{
public static void Foo<T> (this string p1)
{
}
}
class C
{
public static void Main ()
{
//int x = Test.Foo<bool> ("bb");
"a".Foo<bool> ();
}
}