Skip to content

Commit b6f5188

Browse files
committed
fix unused binding
1 parent 377d14b commit b6f5188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_parse/src/parser/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ impl<'a> Parser<'a> {
16101610
}
16111611

16121612
self.bump(); // `+`
1613-
let bounds = self.parse_generic_bounds()?;
1613+
let _bounds = self.parse_generic_bounds()?;
16141614
let sum_span = ty.span.to(self.prev_token.span);
16151615

16161616
let sub = match &ty.kind {

0 commit comments

Comments
 (0)