Home
last modified time | relevance | path

Searched defs:WithAssoc (Results 1 – 11 of 11) sorted by relevance

/third_party/rust/rust/tests/ui/type-alias-impl-trait/
Dissue-69136-inner-lifetime-resolve-error.rs11 trait WithAssoc<A> { trait
15 impl<T> WithAssoc<T> for () { impl
19 type Return<A> = impl WithAssoc<A, AssocType = impl SomeTrait + 'a>; implementation
Dissue-69136-inner-lifetime-resolve-ok.rs11 trait WithAssoc { interface
15 impl WithAssoc for () { implementation
19 type Return<'a> = impl WithAssoc<AssocType = impl Sized + 'a>; implementation
Dissue-67844-nested-opaque.rs8 trait WithAssoc { interface
14 type Return<A> = impl WithAssoc<AssocType = impl WithParam<A>>; implementation
/third_party/rust/rust/tests/ui/specialization/
Dspecialization-translate-projections-with-lifetimes.rs9 trait WithAssoc { trait
13 impl<'a> WithAssoc for &'a () { impl
Dspecialization-translate-projections.rs13 trait WithAssoc { trait
Dspecialization-translate-projections-with-params.rs12 trait WithAssoc { trait
/third_party/rust/rust/tests/ui/regions/
Dregions-outlives-projection-container-wc.rs20 pub struct WithAssoc<T> where T : TheTrait { struct
26 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
Dregions-assoc-type-in-supertrait-outlives-container.rs26 pub struct WithAssoc<T:TheSubTrait> { struct
32 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
Dregions-outlives-projection-container.rs20 pub struct WithAssoc<T:TheTrait> { struct
30 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
/third_party/rust/rust/tests/ui/const-generics/generic_const_exprs/
Dtypeid-equality-by-subtyping.rs26 trait WithAssoc<U> { trait
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dexplicit_auto_deref.rs270 trait WithAssoc { in main() trait
289 impl<'a> WithAssoc for &'a u32 { in main() impl