blob: c15e99e352aee508f7290bbb5d8d497f8d1e82e7 [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 NAN is not equal to NAN using equality operator
* @author hlodvig
*/
import "../../../Utils/expect.dart";
main() {
Expect.isFalse((double.NAN == double.NAN));
Expect.isTrue((double.NAN != double.NAN));
}