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; } }