Skip to content
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 9 pull requests #100740

Merged
merged 24 commits into from
Aug 19, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ee3fc9d
never consider unsafe blocks unused if they would be required with un…
RalfJung Aug 2, 2022
3e44ca9
remove some unused code and types
RalfJung Aug 2, 2022
35a35d8
update comment
RalfJung Aug 2, 2022
86e2ca3
add link to discussion
RalfJung Aug 2, 2022
3c8563a
make NOP dyn casts not require anything about the vtable
RalfJung Aug 6, 2022
4a5c46f
Manually implement Debug for ImportKind.
cjgillot Aug 15, 2022
611221d
Update compiler/rustc_resolve/src/imports.rs
cjgillot Aug 15, 2022
fd934c9
Do not allow Drop impl on foreign fundamental types
compiler-errors Jul 21, 2022
7b45718
pass when where clause found
ouz-a Aug 13, 2022
86645c9
Ignore substs when checking inlining history.
cjgillot Aug 14, 2022
2d968a1
Simplify rustdoc themes by relying more on CSS variables
GuillaumeGomez Aug 13, 2022
9898793
Update existing rustdoc-gui tests and add a new one
GuillaumeGomez Aug 13, 2022
09396fc
Remove unused CSS rule
GuillaumeGomez Aug 18, 2022
05ed13b
ADD - diagnostic lints to type_ir
JhonnyBillM Aug 18, 2022
748c606
rustdoc: count deref and non-deref as same set of used methods
notriddle Aug 18, 2022
0788442
Rollup merge of #99576 - compiler-errors:foreign-fundamental-drop-is-…
Dylan-DPC Aug 19, 2022
2fe2975
Rollup merge of #100081 - RalfJung:unused-unsafe-in-unsafe-fn, r=jack…
Dylan-DPC Aug 19, 2022
c4707ff
Rollup merge of #100208 - RalfJung:dyn-upcast-nop, r=petrochenkov
Dylan-DPC Aug 19, 2022
3cebcba
Rollup merge of #100494 - GuillaumeGomez:cleanup-themes, r=jsha
Dylan-DPC Aug 19, 2022
d83abe8
Rollup merge of #100522 - cjgillot:inline-polymorphic-recursion, r=tm…
Dylan-DPC Aug 19, 2022
769ad70
Rollup merge of #100592 - cjgillot:debug-import-kind, r=TaKO8Ki
Dylan-DPC Aug 19, 2022
490d04b
Rollup merge of #100598 - ouz-a:91633, r=compiler-errors
Dylan-DPC Aug 19, 2022
30e65ce
Rollup merge of #100721 - JhonnyBillM:enable-diag-lint-in-type-ir, r=…
Dylan-DPC Aug 19, 2022
ecd2885
Rollup merge of #100731 - notriddle:notriddle/deref-methods-1, r=jsha
Dylan-DPC Aug 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update compiler/rustc_resolve/src/imports.rs
  • Loading branch information
cjgillot authored Aug 15, 2022
commit 611221d8aee134eb99749045e05896352550639c
2 changes: 1 addition & 1 deletion compiler/rustc_resolve/src/imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl<'a> std::fmt::Debug for ImportKind<'a> {
.field("type_ns_only", type_ns_only)
.field("nested", nested)
.field("additional_ids", additional_ids)
.finish(),
.finish_non_exhaustive(),
Glob { ref is_prelude, ref max_vis } => f
.debug_struct("Glob")
.field("is_prelude", is_prelude)
Expand Down