blob: aac57da7db6725829d2d88fc5c54bea2b56604c1 [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 toStringAsFixed(int fractionDigits)
* The parameter fractionDigits must be an integer satisfying: 0 <= fractionDigits <= 20.
* @description Checks that an exception is thrown when 'fractionDigits' is 100.
* @author pagolubev
* @reviewer msyabro
* @needsreview Exception type?
*/
import "../../../Utils/expect.dart";
main() {
bool fail = false;
try {
.1.toStringAsFixed(100);
fail = true;
} catch(e) {}
if(fail) {
Expect.fail("Expected exception");
}
}