7b87f0cc创建于 2023年8月3日历史提交
public static class Test
{
	public static bool Run()
	{
		const int[3] a = { 5, 10, 15 };
		const int[3] b = { 5, 10, 15 };
		int[] p = a;
		return p == a && !(p == b);
	}
}