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