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 14 pull requests #124015

Merged
merged 33 commits into from
Apr 16, 2024
Merged
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift click to select a range
420c58f
sess: stabilize relro-level
davidtwco Feb 27, 2024
a0bb25f
doc(bootstrap): add top-level doc-comment to utils/tarball.rs
bnleft Mar 14, 2024
dacfbfc
Update ar_archive_writer to 0.2.0
bjorn3 Apr 9, 2024
efbbfa2
visionOS: Fix logic for finding the SDK root
madsmtm Apr 10, 2024
69a3b0e
visionOS: Fix unused import warning
madsmtm Apr 10, 2024
1a72384
Allow specifying SDKROOT as containing XRSimulator.platform
madsmtm Apr 10, 2024
800c506
Slightly more readable NLL/constraint graph dumps
amandasystems Apr 11, 2024
31052bb
Add URL and crate_name to test cases
notriddle Apr 6, 2024
381a0e3
Move ice tests to rustdoc-ui
notriddle Apr 6, 2024
9a577e8
rustdoc: rename `issue-\d .rs` tests to have meaningful names
notriddle Apr 6, 2024
ecbe327
rustdoc: move tests into applicable subdirectories
notriddle Apr 15, 2024
81bf9ae
Make thir_tree and thir_flat into hooks
compiler-errors Apr 16, 2024
8d07d90
Opaque types have no namespace
compiler-errors Apr 16, 2024
24e9a0c
Fix docs for unstable_features lint.
ehuss Apr 16, 2024
00838b3
Make suggest_deref_closure_return more idiomatic/easier to understand
compiler-errors Apr 15, 2024
c0e7659
Move size assertions for `mir::syntax` types into the same file
Zalathar Apr 16, 2024
c30e15a
Fail candidate assembly for erroneous types
gurry Apr 16, 2024
a5a1775
rustdoc: update module-level docs of `rustdoc::clean`
fmease Apr 16, 2024
d8745f9
Update usage note on OpenOptions::append()
hniksic Feb 8, 2024
17d62bc
Rollup merge of #120781 - hniksic:master, r=m-ou-se
GuillaumeGomez Apr 16, 2024
26b6a23
Rollup merge of #121694 - davidtwco:stabilize-relro-level, r=Mark-Sim…
GuillaumeGomez Apr 16, 2024
4232361
Rollup merge of #122521 - bnleft:master, r=albertlarsan68
GuillaumeGomez Apr 16, 2024
ea7eb71
Rollup merge of #123491 - gurry:123154-ice-unsized-struct-eval, r=oli…
GuillaumeGomez Apr 16, 2024
e7c13c3
Rollup merge of #123574 - notriddle:notriddle/issue-d, r=fmease
GuillaumeGomez Apr 16, 2024
9a7adb8
Rollup merge of #123687 - bjorn3:ar_archive_writer_0_2_0, r=oli-obk
GuillaumeGomez Apr 16, 2024
1c8bdb9
Rollup merge of #123721 - madsmtm:fix-visionos, r=davidtwco
GuillaumeGomez Apr 16, 2024
9da8f04
Rollup merge of #123797 - amandasystems:better-graphviz, r=oli-obk
GuillaumeGomez Apr 16, 2024
24cdb7e
Rollup merge of #123990 - compiler-errors:suggest-closure-ret-deref, …
GuillaumeGomez Apr 16, 2024
6629fe6
Rollup merge of #123995 - compiler-errors:thir-hooks, r=oli-obk
GuillaumeGomez Apr 16, 2024
f5adfa0
Rollup merge of #123998 - compiler-errors:opaque-ns, r=davidtwco
GuillaumeGomez Apr 16, 2024
583c1a0
Rollup merge of #124001 - ehuss:fix-unstable_features-docs, r=compile…
GuillaumeGomez Apr 16, 2024
dd08347
Rollup merge of #124006 - Zalathar:static-assert, r=nnethercote
GuillaumeGomez Apr 16, 2024
f11b21b
Rollup merge of #124011 - fmease:rustdoc-updated-clean-docs, r=Guilla…
GuillaumeGomez Apr 16, 2024
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
4 changes: 2 additions & 2 deletions compiler/rustc_hir/src/def.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 207,6 @@ impl DefKind {
| DefKind::Enum
| DefKind::Variant
| DefKind::Trait
| DefKind::OpaqueTy
| DefKind::TyAlias
| DefKind::ForeignTy
| DefKind::TraitAlias
Expand All @@ -234,7 233,8 @@ impl DefKind {
| DefKind::Use
| DefKind::ForeignMod
| DefKind::GlobalAsm
| DefKind::Impl { .. } => None,
| DefKind::Impl { .. }
| DefKind::OpaqueTy => None,
}
}

Expand Down