mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
250 B
Rust
10 lines
250 B
Rust
fn main() {
|
|
let _ = fix(|_: &dyn Fn()| {});
|
|
}
|
|
|
|
fn fix<F: Fn(G), G: Fn()>(f: F) -> impl Fn() {
|
|
move || f(fix(&f))
|
|
//~^ ERROR concrete type differs from previous defining opaque type use
|
|
//~| ERROR expected generic type parameter, found `&F`
|
|
}
|