We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c1e69d commit e2039dbCopy full SHA for e2039db
S32-num/base.t
@@ -106,8 +106,6 @@ subtest 'all Reals can accept Whatever for second .base argument' => {
106
}, Exception, :message{ .contains('repeat count').not },
107
'huge digits arg does not throw weird error';
108
}
109
-#rakudo.moar skip "RT 130753 Gives divide by zero error when trying to .base a fractional num of base 1"
110
-# RT 130753
111
-{
112
- throws-like 1.1.base(1), X::OutOfRange, "Throws like X::OutOfRange for base 1";
113
-}
+
+# RT#130753
+throws-like { 1.1.base(1) }, X::OutOfRange, "Throws like X::OutOfRange for base 1";
0 commit comments