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