mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
235 B
Rust
16 lines
235 B
Rust
//@ check-pass
|
|
|
|
|
|
trait Foo<'a> {
|
|
type Input;
|
|
}
|
|
|
|
impl<F: Fn(u32)> Foo<'_> for F {
|
|
type Input = u32;
|
|
}
|
|
|
|
fn needs_super<F: for<'a> Fn(<F as Foo<'a>>::Input) + for<'a> Foo<'a>>(_: F) {}
|
|
|
|
fn main() {
|
|
needs_super(|_: u32| {});
|
|
}
|