You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#![feature(type_alias_impl_trait)]// Motivation for having a TAIT: Need to convey that the iterator's item type// is the same as the other associated type in `-> impl SelfReferencingAssocs`pubtraitTrait{}pubtraitSelfReferencingAssocs{typeNotAlwaysNameable:Trait;typeIter:Iterator<Item = Self::NotAlwaysNameable>;}pubtypeAlias = implTrait;implTraitfor(){}implSelfReferencingAssocsfor(){typeNotAlwaysNameable = Alias;typeIter = std::vec::IntoIter<Self::NotAlwaysNameable>;}fn_some_defining_use() -> Alias{}pubfnf()
-> implSelfReferencingAssocs<NotAlwaysNameable = Alias,Iter = implSend + Iterator<Item = Alias>,>{}
I tried this code:
I expected to see this happen: compiles like it does if you remove
Send
:Instead, this happened:
Additional notes
A workaround is to isolate the defining use. Perhaps this deserves a diagnostic issue to suggest such isolation in the face of cycle errors?
Motivated by this URLO thread. Note how not unifying the two associated types leads to an
opaque_hidden_inferred_bound
lint warning. (The lint is not necessarily satisfiable on stable and I've encouraged the poster to file a separate issue about that.)Meta
Playground nightly
1.69.0-nightly (2023-02-15 2d14db321b043ffc579a)
@rustbot +labels A-impl-trait F-type_alias_impl-trait requires-nightly
The text was updated successfully, but these errors were encountered: