7b87f0cc创建于 2023年8月3日历史提交
public static class Test
{
	public static bool Run()
	{
		int a = 42;
		switch (a) {
		case 4:
		case 7:
			string() s1 = "foo"; //FAIL: cl
			return false;
		case 40:
			string() s2 = "bar";
			return false;
		default:
			string() s3 = "quux";
			break;
		}
		return true;
	}
}