Skip to content

Commit 11d868e

Browse files
committed
paper over #2586 by not failing when the key is not found
1 parent ee0177b commit 11d868e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/rustc/util/ppaux.rs

+4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ fn re_scope_id_to_str(cx: ctxt, node_id: ast::node_id) -> str {
5252
ast_map::node_id_to_str(cx.items, node_id)]) }
5353
}
5454
}
55+
none {
56+
// FIXME(#2586)
57+
#fmt["<unknown-%d>", node_id]
58+
}
5559
_ { cx.sess.bug(
5660
#fmt["re_scope refers to %s",
5761
ast_map::node_id_to_str(cx.items, node_id)]) }

0 commit comments

Comments
 (0)