blob: a01f0818b4e1c4c529f7e8bcc301f6b83d7e413b [file] [log] [blame]
import "../../../Utils/expect.dart";
/*
* 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
* @needsreview exception is unspecified.
*/
main() {
bool fail = false;
try {
.1.toStringAsPrecision(-1);
fail = true;
} catch(e) {}
if(fail) {
Expect.fail("Expected exception");
}
}