blob: dde407eb854f4804451d16440e39052dad09001e [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 int toInt()
/// @description Checks that [:toInt():] throws some error or exception when
/// called on a NaN.
/// @author pagolubev
import "../../../Utils/expect.dart";
main() {
Expect.throws(() {double.nan.toInt();});
}