-
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
Rollup of 5 pull requests #71105
Rollup of 5 pull requests #71105
Conversation
converting ints in librustc_typeck Fixes rust-lang#70851
…demand.rs Add tests for *size
…=kinnison Improve scrollbar display in rustdoc The scrollbar of the left sidebar in rustdoc looks very bad on firefox (on dark theme). This PR improves it: <div style="display:inline-block;"> <div style="width:50%;display:inline-block;float:left;"> <image src="https://user-images.githubusercontent.com/3050060/78148412-202b0380-7435-11ea-8ff3-79f02ea8f9ed.png"> </div> <div style="width:50%;display:inline-block;float:left;"> <image src="https://user-images.githubusercontent.com/3050060/78148437-28833e80-7435-11ea-946b-a6fc9320b705.png"> </div> </div> With light theme: ![old-firefox-light](https://user-images.githubusercontent.com/3050060/78148718-7bf58c80-7435-11ea-93d3-2a2cafd5c6ae.png) ![firefox-light](https://user-images.githubusercontent.com/3050060/78148736-7f891380-7435-11ea-8b10-a8898f73b4c9.png) And on chrome: ![chrome-light](https://user-images.githubusercontent.com/3050060/78148903-ac3d2b00-7435-11ea-9a10-6c0376a675c3.png) ![chrome-dark](https://user-images.githubusercontent.com/3050060/78148907-ae9f8500-7435-11ea-9b89-0397b977753c.png) Small extra question: should I extend it to all scrollbars? I think it'd be better but just in case... r? @kinnison
Suggest .into() over try_into() when it would work It would be better to suggest x.into() instead, which is shorter, cannot fail, and doesn't require importing a trait. Tests have been added and made up to date. Fixes rust-lang#70851
Remove `FnCtxt::impl_self_ty` Fixes rust-lang#69489 r? @eddyb cc @Centril
…static-morse Miri: let machine hook dynamically decide about alignment checks This is needed for rust-lang/miri#1332.
@bors r+ rollup=never p=5 |
📌 Commit 73e56de has been approved by |
☀️ Test successful - checks-azure |
📣 Toolstate changed by #71105! Tested on commit 8e18e26. 💔 miri on windows: test-pass → build-fail (cc @oli-obk @eddyb @RalfJung). |
Tested on commit rust-lang/rust@8e18e26. Direct link to PR: <rust-lang/rust#71105> 💔 miri on windows: test-pass → build-fail (cc @oli-obk @eddyb @RalfJung). 💔 miri on linux: test-pass → build-fail (cc @oli-obk @eddyb @RalfJung). 🎉 rustc-dev-guide on linux: test-fail → test-pass (cc @JohnTitor @amanjeev @spastorino @mark-i-m).
Successful merges:
FnCtxt::impl_self_ty
#71087 (RemoveFnCtxt::impl_self_ty
)Failed merges:
r? @ghost