Skip to content

Commit 24ce52a

Browse files
committed
Add Span to TraitBoundModifier
1 parent c043d01 commit 24ce52a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ impl Rewrite for ast::GenericBound {
546546
ast::TraitBoundModifier::Maybe => poly_trait_ref
547547
.rewrite(context, shape.offset_left(1)?)
548548
.map(|s| format!("?{}", s)),
549-
ast::TraitBoundModifier::MaybeConst => poly_trait_ref
549+
ast::TraitBoundModifier::MaybeConst(_) => poly_trait_ref
550550
.rewrite(context, shape.offset_left(7)?)
551551
.map(|s| format!("~const {}", s)),
552552
ast::TraitBoundModifier::MaybeConstMaybe => poly_trait_ref

0 commit comments

Comments
 (0)