Skip to content

Commit 97b7874

Browse files
compiler-errorscalebcartwright
authored andcommitted
Fix rustfmt
1 parent fc2cca9 commit 97b7874

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/tools/rustfmt/src/types.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -849,11 +849,7 @@ impl Rewrite for ast::Ty {
849849
rewrite_macro(mac, None, context, shape, MacroPosition::Expression)
850850
}
851851
ast::TyKind::ImplicitSelf => Some(String::from("")),
852-
ast::TyKind::ImplTrait(_, ref it, ref captures) => {
853-
// FIXME(precise_capturing): Implement formatting.
854-
if captures.is_some() {
855-
return None;
856-
}
852+
ast::TyKind::ImplTrait(_, ref it) => {
857853
// Empty trait is not a parser error.
858854
if it.is_empty() {
859855
return Some("impl".to_owned());
@@ -1120,8 +1116,7 @@ fn join_bounds_inner(
11201116

11211117
pub(crate) fn opaque_ty(ty: &Option<ptr::P<ast::Ty>>) -> Option<&ast::GenericBounds> {
11221118
ty.as_ref().and_then(|t| match &t.kind {
1123-
// FIXME(precise_capturing): Implement support here
1124-
ast::TyKind::ImplTrait(_, bounds, _) => Some(bounds),
1119+
ast::TyKind::ImplTrait(_, bounds) => Some(bounds),
11251120
_ => None,
11261121
})
11271122
}

0 commit comments

Comments
 (0)