blob: 9482512efca0a4dd94062b992478ddc6a95e1795 (
plain)
1
2
3
4
5
6
7
8
9
10
|
trait Trait<T> {
type Type<'a> where T: 'a;
fn foo(x: &T) -> Self::Type<'_>;
}
impl<T> Trait<T> for () {
type Type<'a> where T: 'a = &'a T;
fn foo(x: &T) -> Self::Type<'_> {
x
}
}
|