Skip to content

Commit 89bc399

Browse files
committed
Add missing semicolon
1 parent 91ea623 commit 89bc399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_resolve/src/late.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1987,7 +1987,7 @@ impl<'a: 'ast, 'b, 'ast> LateResolutionVisitor<'a, 'b, 'ast> {
19871987
}
19881988
partial_res => {
19891989
if fin_res.is_none() {
1990-
fin_res = partial_res
1990+
fin_res = partial_res;
19911991
}
19921992
}
19931993
}

0 commit comments

Comments
 (0)