63363347创建于 2024年8月6日历史提交
public static class Test
{
	public static bool Run()
	{
		double a = 0; //FAIL: cl if no double support
		float f = 0;
		f = Math.Atan(f);
		return Math.Atan(a) == 0 && f == 0;
	}
}