-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check that closure/generator's interior/capture types are sized #116081
Check that closure/generator's interior/capture types are sized #116081
Conversation
r? @cjgillot (rustbot has picked a reviewer for you, use r? to override) |
589917c
to
79d6853
Compare
Great! |
☀️ Test successful - checks-actions |
Finished benchmarking commit (3050938): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 634.28s -> 634.954s (0.11%) |
check that closure upvars and generator interiors are sized. this check is only necessary when
unsized_fn_params
orunsized_locals
is enabled, so only check if those are active.Fixes #93622
Fixes #61335
Fixes #68543