blob: 7e4b88d53aa4a7f9276c1146684ac08b0d0433a2 [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 String toStringAsPrecision(int precision)
* @description Checks that an exception is thrown when [fractionDigit] is
* negative.
* @author msyabro
*/
import "../../../Utils/expect.dart";
main() {
Expect.throws(() { 0.1.toStringAsPrecision(-1); });
}