Tracking Issue for extended generic associated types #95451
Labels
A-GATs
Area: Generic associated types (GATs)
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
F-generic_associated_types_extended
`#![feature(generic_associated_types_extended)]`
S-tracking-perma-unstable
Status: The feature will stay unstable indefinitely.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
T-lang
Relevant to the language team, which will review and decide on the PR/issue.
This is a tracking issue for extensions to the minimal
generic_associated_types
feature, intended to contain features not intended to be stabilized during initial stabilization. This is primarily for experimentation and likely will remain "incomplete" and almost certainly unsound, at least in the short-term. Longer-term, we like split these features out into separate feature gates, as their implementation becomes more complete.The RFC for GATs is rust-lang/rfcs#1598, but this feature gate likely will contain features not included in the original RFC.
The feature gate for the issue is
#![feature(generic_associated_types_extended)]
.Repository
Features included under this feature gate
"Lazy" associated type obligations during projection
Summary
Briefly, this ignores obligations generated during projection when they contain placeholder regions generated from higher-ranked trait bounds. Eventually, the idea is to either check these more logically or to confirm that they are checked with concrete regions.
Implementation history
generic_associated_types_extended
feature gate #133768: RemovalUnresolved questions
Object safe GATs
Summary
This feature allows traits with GATs to be object safe (other object safety requirements must hold).
Implementation history
Unresolved questions
The text was updated successfully, but these errors were encountered: