7b87f0cc创建于 2023年8月3日历史提交
public static class Test
{
	public static bool Run()
	{
		string() s = "foo"; //FAIL: cl
		string p = "ba'r";
		return s[1] == 'o' && p[1] == 'a' && p[2] == '\'' && "quux"[3] == 'x' && "\n"[0] == '\n';
	}
}