Files
linux-packaging-mono/mcs/tests/test-605.cs

19 lines
186 B
C#
Raw Normal View History

class TestA
{
public virtual string Method
{
get { return null; }
}
}
class TestB : TestA
{
private string Method
{
get { return null; }
}
public static void Main ()
{
}
}