mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
233 B
Rust
17 lines
233 B
Rust
// check-pass
|
|
|
|
fn f(_: X) -> X {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn g<'a>(_: X<'a>) -> X<'a> {
|
|
unimplemented!()
|
|
}
|
|
|
|
type X<'a> = &'a ();
|
|
|
|
fn main() {
|
|
let _: for<'a> fn(X<'a>) -> X<'a> = g;
|
|
let _: for<'a> fn(X<'a>) -> X<'a> = f;
|
|
}
|