blob: 867bea22895917c096000f10bd879eb8ef833b69 [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
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
Expect.isTrue(double.NAN.isNaN);
}