rust/tests/ui/impl-trait/issue-99073.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
250 B
Rust
Raw Normal View History

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
2023-07-21 05:27:41 -05:00
//~| ERROR expected generic type parameter, found `&F`
}