You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
checkSubtype(argType, "Int", argIndex, integral : _*)
597
+
checkSubtype(argType, "Int", argIndex, integral)
598
598
if (conversionChar !='d') {
599
-
valnotAllowedFlagOnCondition=List(('+', !(argType <:<requiredClass("java.math.BigInteger").typeRef), "only use '+' for BigInt conversions to o, x, X"),
600
-
(' ', !(argType <:<requiredClass("java.math.BigInteger").typeRef), "only use ' ' for BigInt conversions to o, x, X"),
601
-
('(', !(argType <:<requiredClass("java.math.BigInteger").typeRef), "only use '(' for BigInt conversions to o, x, X"),
599
+
valnotAllowedFlagOnCondition=List(('+', !(argType <:<defn.JavaBigIntegerClass.typeRef), "only use '+' for BigInt conversions to o, x, X"),
600
+
(' ', !(argType <:<defn.JavaBigIntegerClass.typeRef), "only use ' ' for BigInt conversions to o, x, X"),
601
+
('(', !(argType <:<defn.JavaBigIntegerClass.typeRef), "only use '(' for BigInt conversions to o, x, X"),
602
602
(',', true, "',' only allowed for d conversion of integral types"))
0 commit comments