mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 01:05:39 +03:00
efea88ae08
Always require closure parameters to be `Sized` The `rust-call` ABI isn't compatible with `#![feature(unsized_fn_params)]`, so trying to use that feature with closures leads to an ICE (#67981). This turns that ICE into a type-check error. `@rustbot` label A-closures F-unsized_fn_params