Open shkoo opened 8 months ago
Regression in nightly-2022-06-08 get_commits_between returning commits, len: 7 commit[0] 2022-06-06: Auto merge of #97730 - flip1995:clippyup, r=Manishearth commit[1] 2022-06-06: Auto merge of #97809 - matthiaskrgr:rollup-ajyvjd3, r=matthiaskrgr commit[2] 2022-06-07: Auto merge of #97801 - RalfJung:miri, r=RalfJung commit[3] 2022-06-07: Auto merge of #95565 - jackh726:remove-borrowck-mode, r=nikomatsakis commit[4] 2022-06-07: Auto merge of #97512 - scottmcm:add-coldcc, r=nagisa,lcnr commit[5] 2022-06-07: Auto merge of #97825 - Dylan-DPC:rollup-ya51k1k, r=Dylan-DPC commit[6] 2022-06-07: Auto merge of #97835 - Dylan-DPC:rollup-0ae3pwp, r=Dylan-DPC ERROR: no CI builds available between 50b00252aeb77b10db04d65dc9e12ce758def4b5 and 5435ed6916a59e8d5acba2149316a841c3905cbd within last 167 days
probably 95565 ? cc @jackh726
That PR removed NLL's migrate mode, so maybe the bisection could go further back with with #![feature(nll)]
, to opt-in to full NLLs before it was the default.
fourth attempt or so... searched toolchains nightly-2018-01-01 through nightly-2024-03-18
Regression in nightly-2019-03-14
looking for regression commit between 2019-03-13 and 2019-03-14 fetching (via remote github) commits from max(7c19e1eed5418b8c02be65d678417b241ee01a3e, 2019-03-11) to 719b0d9849dab698c1ff0630313d068c7d561eae ending github query because we found starting sha: 7c19e1eed5418b8c02be65d678417b241ee01a3e get_commits_between returning commits, len: 6 commit[0] 2019-03-12: Auto merge of #58015 - icefoxen:tryfrom-docs, r=SimonSapin commit[1] 2019-03-12: Auto merge of #58743 - varkor:bulk-needstest-1, r=alexcrichton commit[2] 2019-03-13: Auto merge of #59151 - Centril:rollup, r=Centril commit[3] 2019-03-13: Auto merge of #56864 - Zoxc:stable-hash-macro, r=michaelwoerister commit[4] 2019-03-13: Auto merge of #58349 - petrochenkov:uni201x, r=pnkfelix commit[5] 2019-03-13: Auto merge of #59143 - ehuss:update-cargo, r=ehuss ERROR: no CI builds available between 7c19e1eed5418b8c02be65d678417b241ee01a3e and 719b0d9849dab698c1ff0630313d068c7d561eae within last 167 days
Minimized:
trait IsStatic: 'static {}
impl<T: 'static> IsStatic for T {}
fn foo<T>(x: Box<T>) -> Box<dyn for<'a> FnOnce(&'a ()) -> Box<dyn IsStatic + 'a>> {
Box::new(move |_| x)
}
Identical to #125891 except for having dyn
instead of impl
.
Code
Meta
rustc --version --verbose
:Error output