blob: 24e728f91a7fa4235598e5a9aed21542fdeaa5e4 [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.
// @dart = 2.9
/// @assertion bool isInfinite
/// @description Checks that 1/0 and -1/0 are infinite.
/// @author pagolubev
import "../../../Utils/expect.dart";
main() {
double inf = 1 / 0;
Expect.isTrue(inf.isInfinite);
Expect.isTrue((-inf).isInfinite);
Expect.isTrue((double.infinity).isInfinite);
Expect.isTrue((double.negativeInfinity).isInfinite);
}