mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
247 B
Rust
18 lines
247 B
Rust
// check-pass
|
|
|
|
pub trait Fn0: Fn(i32) -> Self::Out {
|
|
type Out;
|
|
}
|
|
|
|
impl<F: Fn(i32) -> ()> Fn0 for F {
|
|
type Out = ();
|
|
}
|
|
|
|
pub fn closure_typer(_: impl Fn0) {}
|
|
|
|
fn main() {
|
|
closure_typer(move |x| {
|
|
let _: i64 = x.into();
|
|
});
|
|
}
|