11 lines
193 B
Rust
11 lines
193 B
Rust
#![feature(generic_associated_types)]
|
|
|
|
impl SomeStruct {
|
|
fn process<T>(v: T) -> <Self as GAT>::R<T>
|
|
where
|
|
Self: GAT<R<T> = T>,
|
|
{
|
|
SomeStruct::do_something(v)
|
|
}
|
|
}
|