blob: 6d9dfcce5f5061913bd3c99d11ee65190979ffd7 [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 bool isInfinite
* @description Checks that 1/0 and -1/0 are infinite.
* @author pagolubev
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
double inf = 1/0;
Expect.isTrue(inf.isInfinite);
Expect.isTrue((-inf).isInfinite);
}