20 lines
289 B
Rust
20 lines
289 B
Rust
|
// check-pass
|
||
|
|
||
|
#![feature(associated_type_bounds, return_position_impl_trait_in_trait)]
|
||
|
|
||
|
trait Trait {
|
||
|
type Type;
|
||
|
|
||
|
fn method(&self) -> impl Trait<Type: '_>;
|
||
|
}
|
||
|
|
||
|
impl Trait for () {
|
||
|
type Type = ();
|
||
|
|
||
|
fn method(&self) -> impl Trait<Type: '_> {
|
||
|
()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|