mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:06:38 +00:00
22 lines
250 B
Rust
22 lines
250 B
Rust
//@ check-pass
|
|
|
|
fn f(_: X) -> X {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn g<'a>(_: X<'a>) -> X<'a> {
|
|
unimplemented!()
|
|
}
|
|
|
|
type X<'a> = <&'a () as Trait>::Value;
|
|
|
|
trait Trait {
|
|
type Value;
|
|
}
|
|
|
|
impl<'a> Trait for &'a () {
|
|
type Value = ();
|
|
}
|
|
|
|
fn main() {}
|