]> git.lizzy.rs Git - rust.git/commit - src/tools/rust-analyzer
Rollup merge of #89321 - tmiasko:rebase-resume-arg, r=estebank
authorManish Goregaokar <manishsmail@gmail.com>
Fri, 1 Oct 2021 06:41:07 +0000 (23:41 -0700)
committerGitHub <noreply@github.com>
Fri, 1 Oct 2021 06:41:07 +0000 (23:41 -0700)
commit27269554b85d9202f5cdbfa09c6350498adf9d31
treee133424df734f5370737013d9e233212842dea03
parente77d163e82b2b6680322085c421c438cf60a7bc6
parent8901ea29b93eeff11c86986f620108e9f34330df
Rollup merge of #89321 - tmiasko:rebase-resume-arg, r=estebank

Rebase resume argument projections during state transform

When remapping a resume argument with projections rebase them on top of
the new base.

The case where resume argument has projections is unusual, but might
arise with box syntax where the assignment is performed directly into
the box without an intermediate temporary.

Fixes #85635.