| Index: pkg/fixnum/test/int_64_test.dart
|
| diff --git a/pkg/fixnum/test/int_64_test.dart b/pkg/fixnum/test/int_64_test.dart
|
| index 20f2822d9a693f9891b18ed10c5fb661844059df..d781984ea101f0534af907db0e89af6d82637238 100644
|
| --- a/pkg/fixnum/test/int_64_test.dart
|
| +++ b/pkg/fixnum/test/int_64_test.dart
|
| @@ -562,6 +562,13 @@ void main() {
|
| // Overflow during parsing.
|
| check("9223372036854775808", 10, "-9223372036854775808");
|
| });
|
| +
|
| + test("parseRadixN", () {
|
| + check(String s, int r) {
|
| + expect(Int64.parseRadix(s, r).toRadixString(r), s);
|
| + }
|
| + check("2ppp111222333", 33); // This value & radix requires three chunks.
|
| + });
|
| });
|
|
|
| group("string representation", () {
|
|
|