blob: cc1ee303a33c00c1c106643070281ec3a14834c2 [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 NAN
* @description Checks that [:isNaN:] returns true for double.nan.
* @author pagolubev
*/
import "../../../Utils/expect.dart";
main() {
Expect.isTrue(double.nan.isNaN);
}