-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Rollup of 3 pull requests #114514
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
Rollup of 3 pull requests #114514
Conversation
Explain more clearly why `fn() -> T` can't be `#[derive(Clone)]` Closes rust-lang#73480 The derived impls were generated with `rustc -Z unpretty=expanded main.rs` and the raw output is: ```rust struct Generate<T>(fn() -> T); #[automatically_derived] impl<T: ::core::marker::Copy> ::core::marker::Copy for Generate<T> { } #[automatically_derived] impl<T: ::core::clone::Clone> ::core::clone::Clone for Generate<T> { #[inline] fn clone(&self) -> Generate<T> { Generate(::core::clone::Clone::clone(&self.0)) } } ```
…copy-impl, r=b-naber Make lint missing-copy-implementations honor negative `Copy` impls Fixes rust-lang#101980. ``@rustbot`` label A-lint F-negative_impls
…ozkanonur Print tidy command with bless tidy check failure It's more friendly for beginners to fix fluent alphabetical errors.
@bors r+ rollup=never p=3 |
☀️ Test successful - checks-actions |
📌 Perf builds for each rolled up PR:
previous master: 28b6607b5f In the case of a perf regression, run the following command for each PR you suspect might be the cause: |
Finished benchmarking commit (fbc11e9): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 649.629s -> 648.941s (-0.11%) |
Successful merges:
fn() -> T
can't be#[derive(Clone)]
#114029 (Explain more clearly whyfn() -> T
can't be#[derive(Clone)]
)Copy
impls #114248 (Make lint missing-copy-implementations honor negativeCopy
impls)r? @ghost
@rustbot modify labels: rollup
Create a similar rollup