Skip to content

Commit 71a50c0

Browse files
committed
Update to match rust-lang/rust#34753
1 parent 134f174 commit 71a50c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ impl<'a> fmt::Display for Demangle<'a> {
172172
"$u20$", => " ",
173173
"$u27$", => "'",
174174
"$u5b$", => "[",
175-
"$u5d$", => "]"
175+
"$u5d$", => "]",
176+
"$u7b$", => "{",
177+
"$u7d$", => "}"
176178
}
177179
} else {
178180
let idx = rest.find('$').unwrap_or(rest.len());

0 commit comments

Comments
 (0)