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.

9 lines
176 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))
2025-04-01 21:48:41 +00:00
//~^ ERROR expected generic type parameter, found `&F`
}