7b87f0cc创建于 2023年8月3日历史提交
public class Test
{
	string()[2] F;

	public static bool Run()
	{
		string()[2] a; //FAIL: cl
		a[0] = "foo";
		a[1] = "bar";
		Test() o;
		o.F[0] = "quux";
		o.F[1] = "baz";
		return a[0] == "foo" && a[1] == "bar" && o.F[0] == "quux" && o.F[1] == "baz";
	}
}