blob: 7908577f65d8e5ebcc44cc5d234d6b45329f3f6b [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.
// @dart = 2.9
/// @assertion bool operator <(num other)
/// @description Checks .0 and -.0.
/// @author pagolubev
import "../../../Utils/expect.dart";
main() {
Expect.isFalse(-.0 < .0);
Expect.isFalse(.0 < -.0);
}