Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
321cd2a
remove duplicated columns from `rustc_error_code::error_codes!`
cyrgani Sep 22, 2025
29f31f1
rustdoc: Add unstable `--merge-doctests=yes/no/auto` flag
jyn514 Dec 2, 2025
3aa4ece
Support `-C save-temps` in rustdoc
jyn514 Dec 3, 2025
415953a
`--merge-doctests` is a default, not an override
jyn514 Dec 3, 2025
4d697d2
Remove "tidy" tool for `tests/rustdoc` testsuite
GuillaumeGomez Dec 10, 2025
4509163
Put negative implementors first and apply same ordering logic to fore…
GuillaumeGomez Jun 11, 2025
985178d
Add GUI test to ensure that negative impls are correctly sorted
GuillaumeGomez Jun 11, 2025
13091dd
Make implementors list visible only when filled
GuillaumeGomez Jun 24, 2025
fb9d3a5
Simplify the sorting of impls and use CSS classes instead of plain JS…
GuillaumeGomez Dec 10, 2025
40891c7
Use ubuntu:24.04 for the `x86_64-gnu-miri` and `x86_64-gnu-aux` jobs
Kobzol Dec 9, 2025
96a7000
Rename some issue-* tests
GrigorenkoPV Dec 8, 2025
507b67f
Add test for incorrect macro span replacement
estebank Nov 8, 2025
1bd7934
Point at span within local macros even when error happens in nested e…
estebank Nov 8, 2025
c27bcef
don't resolve main in lib crates
21aslade Dec 4, 2025
c60ed21
Do not suggest moving expression out of for loop when hitting `break`…
estebank Dec 10, 2025
3f98375
time: Implement SystemTime::{MIN, MAX}
cvengler Nov 11, 2025
e408376
Rollup merge of #142380 - GuillaumeGomez:neg-implementors, r=yotamofek
JonathanBrouwer Dec 11, 2025
a30dac0
Rollup merge of #146584 - cyrgani:error-codes-macro, r=GuillaumeGomez
JonathanBrouwer Dec 11, 2025
888f4f1
Rollup merge of #148717 - estebank:macro-spans-2, r=petrochenkov
JonathanBrouwer Dec 11, 2025
da45ac3
Rollup merge of #148825 - cvengler:time_systemtime_limits, r=ChrisDenton
JonathanBrouwer Dec 11, 2025
76d01f3
Rollup merge of #149565 - jyn514:force-doctest-merge, r=notriddle
JonathanBrouwer Dec 11, 2025
84a000f
Rollup merge of #149770 - GrigorenkoPV:tests/consts, r=WaffleLapkin
JonathanBrouwer Dec 11, 2025
cecf9f2
Rollup merge of #149807 - Kobzol:miri-ubuntu-24.04, r=marcoieni
JonathanBrouwer Dec 11, 2025
b037c15
Rollup merge of #149850 - GuillaumeGomez:rm-tidy-rustdoc, r=yotamofek
JonathanBrouwer Dec 11, 2025
4b195d1
Rollup merge of #149863 - estebank:issue-149861, r=mati865
JonathanBrouwer Dec 11, 2025
6ed8e68
Rollup merge of #149867 - 21aslade:lib-crate-main, r=Kivooeo
JonathanBrouwer Dec 11, 2025
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: 3 additions & 1 deletion compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4521,7 +4521,9 @@ struct BreakFinder {
impl<'hir> Visitor<'hir> for BreakFinder {
fn visit_expr(&mut self, ex: &'hir hir::Expr<'hir>) {
match ex.kind {
hir::ExprKind::Break(destination, _) => {
hir::ExprKind::Break(destination, _)
if !ex.span.is_desugaring(DesugaringKind::ForLoop) =>
{
self.found_breaks.push((destination, ex.span));
}
hir::ExprKind::Continue(destination) => {
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_error_codes/src/error_codes/E0773.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### this error code is no longer emitted by the compiler.
#### Note: this error code is no longer emitted by the compiler.

This was triggered when multiple macro definitions used the same
`#[rustc_builtin_macro(..)]`. This is no longer an error.
Loading
Loading