7b87f0cc创建于 2023年8月3日历史提交
public static class Test
{
	public static bool Run()
	{
		float inf = Math.PositiveInfinity;
		float minusInf = Math.NegativeInfinity;
		return inf > 1e300 && minusInf < -1e300 //FAIL: cl TODO if no double support
			&& Math.IsInfinity(inf) && Math.IsInfinity(minusInf)
			&& !Math.IsFinite(inf) && !Math.IsFinite(minusInf);
	}
}