We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be7fb2e commit e5cf30cCopy full SHA for e5cf30c
compiler/rustc_symbol_mangling/src/v0.rs
@@ -831,7 +831,7 @@ impl<'tcx> Printer<'tcx> for SymbolMangler<'tcx> {
831
/// e.g. `1` becomes `"0_"`, `62` becomes `"Z_"`, etc.
832
pub(crate) fn push_integer_62(x: u64, output: &mut String) {
833
if let Some(x) = x.checked_sub(1) {
834
- base_n::push_str(x as u128, 62, output);
+ base_n::push_str(x as u128, base_n::ALPHANUMERIC_ONLY, output);
835
}
836
output.push('_');
837
0 commit comments