7b87f0cc创建于 2023年8月3日历史提交
abstract class Base
{
	internal abstract bool Foo(); //FAIL: cl
}

class Derived : Base
{
	internal override bool Foo()
	{
		return true;
	}
}

public static class Test
{
	public static bool Run()
	{
		Base# d = new Derived();
		return d.Foo();
	}
}