Skip to content

Commit 587c504

Browse files
committed
Fix rebase conflicts
1 parent 18f6922 commit 587c504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/passes/check_code_block_syntax.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl<'a, 'tcx> SyntaxChecker<'a, 'tcx> {
5353
return;
5454
}
5555

56-
let local_id = match item.def_id.as_local() {
56+
let local_id = match item.def_id.as_real().and_then(|x| x.as_local()) {
5757
Some(id) => id,
5858
// We don't need to check the syntax for other crates so returning
5959
// without doing anything should not be a problem.

0 commit comments

Comments
 (0)