blob: 5cd4df3b5f61aecda38ccfd2c25ae751f0d0aaf2 [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 Checks that type of NEGATIVE_INFINITY is double
* @author hlodvig
*/
import "../../../Utils/expect.dart";
main() {
Expect.isFalse(double.NEGATIVE_INFINITY is int);
Expect.isTrue(double.NEGATIVE_INFINITY is double);
Expect.isTrue(double.NEGATIVE_INFINITY is num);
}