2023-11-02 20:57:05 +00:00

15 lines
249 B
Rust

// revisions: classic next
//[next] compile-flags: -Ztrait-solver=next
//[next] check-pass
fn ice()
where
for<'w> fn(&'w ()): Fn(&'w ()),
{
}
fn main() {
ice();
//[classic]~^ ERROR expected a `Fn(&'w ())` closure, found `fn(&'w ())`
}