blob: 3c55ea47cf02b8580a6cc688acefee4be68cf433 [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 double abs()
* @description Checks that if the value is infinite, the result is positive infinity.
* @author pagolubev
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
double inf = 1 / 0;
Expect.equals(inf, inf.abs());
Expect.equals(inf, (-inf).abs());
}