rust/tests/target/issue_4911.rs
2022-08-30 23:06:24 -04:00

9 lines
148 B
Rust

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