--- radix.d Mon Mar 14 17:21:35 2005 +++ fixes/radix.d Sat Mar 19 18:09:36 2005 @@ -150,7 +150,7 @@ case "0B": s = s[2..s.length]; radix = 2; break; default: { - if (s[0] == 0) throw new IntException("Leading zero not permitted if radix unspecified"); + if (s[0] == '0') throw new IntException("Leading zero not permitted if radix unspecified"); radix = 10; } }