blob: 431303f8acb68b4e2c8cf8ed9b88cc925387bad1 [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 NEGATIVE_INFINITY
* @description Comparing NEGATIVE_INFINITY with 0
* @author hlodvig
*/
import "../../../Utils/expect.dart";
main() {
Expect.isFalse((double.negativeInfinity > 0));
Expect.isTrue((double.negativeInfinity < 0));
Expect.isFalse((double.negativeInfinity >= 0));
Expect.isTrue((double.negativeInfinity <= 0));
Expect.isFalse((double.negativeInfinity == 0));
}