Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cca2865
sess: `-Zbranch-protection` is a target modifier
davidtwco Jan 29, 2026
aa7d812
remove `internal_impls_macro` feature
cyrgani Mar 17, 2026
e350a56
move features into the correct section
cyrgani Feb 24, 2026
c8a2c46
bootstrap: Optionally print a backtrace if a command fails
jyn514 Mar 16, 2026
74c51ce
Don't emit `missing_doc_code_examples` on impl items
GuillaumeGomez Mar 18, 2026
6d3b780
Add more tests for rustdoc `missing_doc_code_examples` lint
GuillaumeGomez Mar 18, 2026
45b22ef
tests: Activate must_not_suspend test for MutexGuard dropped before a…
Enselic Mar 18, 2026
bef4b47
Updates derive_where and removes workaround
spirali Mar 19, 2026
74776c4
Rewrite `query_ensure_result`.
nnethercote Mar 19, 2026
cec0a68
Resolve paths for `impl` restrictions using `smart_resolve_path`
CoCo-Japan-pan Mar 19, 2026
4a60dae
Add UI tests for path resolution errors of `impl` restrictions
CoCo-Japan-pan Mar 19, 2026
082cdf7
Preserve braces around `self` in use tree pretty printing
aytey Mar 19, 2026
c777685
Fix whitespace after fragment specifiers in macro pretty printing
aytey Mar 19, 2026
e9740a4
Insert space after float literal ending with `.` in pretty printer
aytey Mar 19, 2026
caad6ee
tests: Add regression test for async closures involving HRTBs
Enselic Mar 19, 2026
88108dd
Rollup merge of #152909 - davidtwco:branch-protection-target-modifier…
JonathanBrouwer Mar 19, 2026
d99932c
Rollup merge of #153556 - CoCo-Japan-pan:impl-restriction-lowering, r…
JonathanBrouwer Mar 19, 2026
74eae37
Rollup merge of #154048 - GuillaumeGomez:missing_doc_code_examples-im…
JonathanBrouwer Mar 19, 2026
511b254
Rollup merge of #153992 - ferrocene:jyn/bootstrap-backtrace, r=jieyou…
JonathanBrouwer Mar 19, 2026
2aa5f08
Rollup merge of #154019 - cyrgani:feature-clean, r=joboet
JonathanBrouwer Mar 19, 2026
0827a4b
Rollup merge of #154059 - Enselic:dropped-mutex-guard, r=Kivooeo
JonathanBrouwer Mar 19, 2026
08c8761
Rollup merge of #154075 - nnethercote:rewrite-query_ensure_result, r=…
JonathanBrouwer Mar 19, 2026
b29a650
Rollup merge of #154082 - spirali:fix-derive-where, r=lqd
JonathanBrouwer Mar 19, 2026
f48ea33
Rollup merge of #154084 - aytey:fix-use-self-braces, r=Kivooeo
JonathanBrouwer Mar 19, 2026
b03a61d
Rollup merge of #154086 - aytey:fix-float-range-spacing, r=Kivooeo
JonathanBrouwer Mar 19, 2026
136aa2f
Rollup merge of #154087 - aytey:fix-fragment-specifier-whitespace, r=…
JonathanBrouwer Mar 19, 2026
0ab7a28
Rollup merge of #154109 - Enselic:unifying-function-types-involving-h…
JonathanBrouwer Mar 19, 2026
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
remove internal_impls_macro feature
  • Loading branch information
cyrgani committed Mar 17, 2026
commit aa7d812f348da3e330cf3b99ee4a5ec373f2a38b
1 change: 0 additions & 1 deletion library/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@
#![feature(core_intrinsics)]
#![feature(coverage_attribute)]
#![feature(disjoint_bitor)]
#![feature(internal_impls_macro)]
#![feature(link_cfg)]
#![feature(offset_of_enum)]
#![feature(panic_internals)]
Expand Down
3 changes: 0 additions & 3 deletions library/core/src/marker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ use crate::pin::UnsafePinned;
/// u32,
/// }
/// ```
#[unstable(feature = "internal_impls_macro", issue = "none")]
// Allow implementations of `UnsizedConstParamTy` even though std cannot use that feature.
#[allow_internal_unstable(const_param_ty_trait)]
macro marker_impls {
( $(#[$($meta:tt)*])* $Trait:ident for $({$($bounds:tt)*})? $T:ty $(, $($rest:tt)*)? ) => {
$(#[$($meta)*])* impl< $($($bounds)*)? > $Trait for $T {}
Expand Down