9 lines
148 B
Rust
9 lines
148 B
Rust
|
#![feature(min_type_alias_impl_trait)]
|
||
|
|
||
|
impl SomeTrait for SomeType {
|
||
|
type SomeGAT<'a>
|
||
|
where
|
||
|
Self: 'a,
|
||
|
= impl SomeOtherTrait;
|
||
|
}
|