2023-03-06 23:30:34 +00:00
|
|
|
// revisions: classic next
|
|
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
|
|
//[next] check-pass
|
|
|
|
|
|
|
|
fn ice()
|
|
|
|
where
|
|
|
|
for<'w> fn(&'w ()): Fn(&'w ()),
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
ice();
|
2023-10-05 01:50:00 +00:00
|
|
|
//[classic]~^ ERROR expected a `Fn(&'w ())` closure, found `fn(&'w ())`
|
2023-03-06 23:30:34 +00:00
|
|
|
}
|