mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
243 B
Rust
15 lines
243 B
Rust
// revisions: classic next
|
|
//[next] compile-flags: -Znext-solver
|
|
//[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 ())`
|
|
}
|