-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Diagnostic regression for proc-macro generated code #123503
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
C-bug
Category: This is a bug.
D-verbose
Diagnostics: Too much output caused by a single piece of incorrect code.
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
P-medium
Medium priority
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
Comments
marco? proco! |
WG-prioritization assigning priority (Zulip discussion). @rustbot label -I-prioritize +P-medium |
MingweiSamuel
added a commit
to MingweiSamuel/hydroflow
that referenced
this issue
Apr 11, 2024
MingweiSamuel
added a commit
to MingweiSamuel/hydroflow
that referenced
this issue
Apr 11, 2024
Had a similar regression bisected to 1ca424c ExampleBefore: error[E0277]: `{integer}` is not an iterator
--> tests/compile-fail/surface_source_iter_badtype.rs:5:21
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ------------^-
| | |
| | `{integer}` is not an iterator
| required by a bound introduced by this call
|
= help: the trait `Iterator` is not implemented for `{integer}`, which is required by `{integer}: IntoIterator`
= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax `start..end` or the inclusive range syntax `start..=end`
= note: required for `{integer}` to implement `IntoIterator`
note: required by a bound in `check_iter`
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^ required by this bound in `check_iter` After error[E0277]: `{integer}` is not an iterator
--> tests/compile-fail/surface_source_iter_badtype.rs:5:21
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ------------^-
| | |
| | `{integer}` is not an iterator
| required by a bound introduced by this call
|
= help: the trait `Iterator` is not implemented for `{integer}`, which is required by `{integer}: IntoIterator`
= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax `start..end` or the inclusive range syntax `start..=end`
= note: required for `{integer}` to implement `IntoIterator`
note: required by a bound in `check_iter`
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^ required by this bound in `check_iter`
error[E0277]: `{integer}` is not an iterator
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^ `{integer}` is not an iterator
|
= help: the trait `Iterator` is not implemented for `{integer}`, which is required by `{integer}: IntoIterator`
= note: required for `{integer}` to implement `IntoIterator`
note: required by a bound in `check_iter`
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^ required by this bound in `check_iter`
error[E0277]: `{integer}` is not an iterator
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `{integer}` is not an iterator
|
= help: the trait `Iterator` is not implemented for `{integer}`, which is required by `{integer}: IntoIterator`
= note: required for `{integer}` to implement `IntoIterator`
note: required by a bound in `check_iter`
--> tests/compile-fail/surface_source_iter_badtype.rs:5:9
|
5 | source_iter(5) -> for_each(std::mem::drop);
| ^^^^^^^^^^^^^^ required by this bound in `check_iter` |
MingweiSamuel
added a commit
to MingweiSamuel/hydroflow
that referenced
this issue
Apr 11, 2024
MingweiSamuel
added a commit
to hydro-project/hydro
that referenced
this issue
Apr 11, 2024
shadaj
pushed a commit
to hydro-project/hydro
that referenced
this issue
Mar 11, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
C-bug
Category: This is a bug.
D-verbose
Diagnostics: Too much output caused by a single piece of incorrect code.
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
P-medium
Medium priority
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
Code
I tried this code:
I expected to see a meaningful error that points to the relevant fields that cause this issue:
Instead, this happened: Rustc emits an error message that duplicates the actual error several times. First it only points to the derive, later versions of the same error message point to the correct fields:
Version it worked on
It most recently worked on: Rust 1.74
Version with regression
rustc --version --verbose
:I've checked the stable rust versions in between and the error message first changes in 1.75 which introduces the messages that point to
#[derive(Insertable)]
but back then these were shown at the end of the output instead as first error message. Bisecting between the two stable releases points to #117159 as PR that introduced the duplicated messages.Bisect Log
Regression in rust-lang-ci@dc8cfe1
The PR introducing the regression in this rollup is #117159: Work around the fact that
check_mod_type_wf
may spuriousl…searched nightlies: from nightly-2023-10-01 to nightly-2023-11-11
regressed nightly: nightly-2023-10-26
searched commit range: df871fb...ab5c841
regressed commit: ab5c841
bisected with cargo-bisect-rustc v0.6.8
Host triple: x86_64-unknown-linux-gnu
Reproduce with:
The error then changed again between 1.76.0 and 1.77.0 by moving the message mentioning
#[derive(Insertable)]
at the begin of the error output. Bisecting points to 791a53f as the commit that introduced that change.Bisect Log
Attempting to search unrolled perf builds ERROR: couldn't find perf build commentsearched nightlies: from nightly-2023-12-21 to nightly-2024-02-01
regressed nightly: nightly-2024-01-06
searched commit range: f688dd6...595bc6f
regressed commit: 791a53f
bisected with cargo-bisect-rustc v0.6.8
Host triple: x86_64-unknown-linux-gnu
Reproduce with:
@rustbot modify labels: +regression-from-stable-to-stable -regression-untriaged +A-diagnostics
The text was updated successfully, but these errors were encountered: