blob: 86230ac6a2e0c59594e3e1fae7cd675e4804c5af [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);
}