We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f6922 commit 587c504Copy full SHA for 587c504
src/librustdoc/passes/check_code_block_syntax.rs
@@ -53,7 +53,7 @@ impl<'a, 'tcx> SyntaxChecker<'a, 'tcx> {
53
return;
54
}
55
56
- let local_id = match item.def_id.as_local() {
+ let local_id = match item.def_id.as_real().and_then(|x| x.as_local()) {
57
Some(id) => id,
58
// We don't need to check the syntax for other crates so returning
59
// without doing anything should not be a problem.
0 commit comments