blob: 234c4a331af20758efaa81f9e26bce20bdffd394 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion num max(num a, num b)
* The larger of -0.0 and 0.0 is 0.0
* @description Checks that 0.0 is larger than -0.0.
* @author msyabro
*/
import "../../Utils/expect.dart";
import "dart:math" as Math;
main() {
Expect.isFalse(Math.max(.0, -.0).isNegative);
Expect.isFalse(Math.max(-.0, .0).isNegative);
}