mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
249 B
Rust
22 lines
249 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() {}
|