Skip to content

Commit a568985

Browse files
committed
Auto merge of #123468 - compiler-errors:precise-capturing, r=oli-obk
Implement syntax for `impl Trait` to specify its captures explicitly (`feature(precise_capturing)`) Implements `impl use<'a, 'b, T, U> Sized` syntax that allows users to explicitly list the captured parameters for an opaque, rather than inferring it from the opaque's bounds (or capturing *all* lifetimes under 2024-edition capture rules). This allows us to exclude some implicit captures, so this syntax may be used as a migration strategy for changes due to #117587. We represent this list of captured params as `PreciseCapturingArg` in AST and HIR, resolving them between `rustc_resolve` and `resolve_bound_vars`. Later on, we validate that the opaques only capture the parameters in this list. We artificially limit the feature to *require* mentioning all type and const parameters, since we don't currently have support for non-lifetime bivariant generics. This can be relaxed in the future. We also may need to limit this to require naming *all* lifetime parameters for RPITIT, since GATs have no variance. I have to investigate this. This can also be relaxed in the future. r? `@oli-obk` Tracking issue: - #123432
2 parents dac1a22 + 9400b99 commit a568985

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/types.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,11 @@ impl Rewrite for ast::Ty {
843843
rewrite_macro(mac, None, context, shape, MacroPosition::Expression)
844844
}
845845
ast::TyKind::ImplicitSelf => Some(String::from("")),
846-
ast::TyKind::ImplTrait(_, ref it) => {
846+
ast::TyKind::ImplTrait(_, ref it, ref captures) => {
847+
// FIXME(precise_capturing): Implement formatting.
848+
if captures.is_some() {
849+
return None;
850+
}
847851
// Empty trait is not a parser error.
848852
if it.is_empty() {
849853
return Some("impl".to_owned());
@@ -1106,7 +1110,8 @@ fn join_bounds_inner(
11061110

11071111
pub(crate) fn opaque_ty(ty: &Option<ptr::P<ast::Ty>>) -> Option<&ast::GenericBounds> {
11081112
ty.as_ref().and_then(|t| match &t.kind {
1109-
ast::TyKind::ImplTrait(_, bounds) => Some(bounds),
1113+
// FIXME(precise_capturing): Implement support here
1114+
ast::TyKind::ImplTrait(_, bounds, _) => Some(bounds),
11101115
_ => None,
11111116
})
11121117
}

0 commit comments

Comments
 (0)