blob: 417c9443b5ac2fd8e0f0896ae7474d21bca4e45f [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 INFINITY
* @description Checks that type of INFINITY is double
* @author hlodvig
*/
import "../../../Utils/expect.dart";
main() {
Expect.isTrue(double.infinity is double);
Expect.isTrue(double.infinity is num);
}