提交 2cfea5fd 编写于 作者: D David Poeschl

Fix broken unit tests

上级 7b9978bd
......@@ -1612,7 +1612,7 @@ class C
IEnumerable<C> Test()
{
return (new[] { 1, 2, 3 }).Select(x => x);
return new[] { 1, 2, 3 };
}
}
";
......@@ -4126,11 +4126,7 @@ int M(IEnumerable<int> nums)
/*21*/
return /*22*/ /* 1 *//* 2 *//* 3 *//* 4 */// 5
/*23*/
(nums /* 12 */.Select(
/* 6 *//* 7 *//* 14 */// 15
/* 9 */x /* 10 */ => x/* 10 *//*19*///20
/* 8 *//* 11 */// 13
)).Count()/* 16 *//* 17 *///18
(nums /* 12 */).Count()/* 16 *//* 17 *///18
; //24
}
}";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册