mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
18 lines
216 B
Rust
18 lines
216 B
Rust
//@ check-pass
|
|
|
|
trait Trait {
|
|
type Type;
|
|
|
|
fn method(&self) -> impl Trait<Type: '_>;
|
|
}
|
|
|
|
impl Trait for () {
|
|
type Type = ();
|
|
|
|
fn method(&self) -> impl Trait<Type: '_> {
|
|
()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|