-
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
When a help message is associated with a warning message, the two message you should be printed together and the source code printed only once. #21938
Comments
When warnings and errors occur, the associated help message should not print the same code snippet. rust-lang#21938
When warnings and errors occur, the associated help message should not print the same code snippet. rust-lang#21938
When warnings and errors occur, the associated help message should not print the same code snippet. rust-lang#21938
Looks like the referenced merge addresses error + help combos (albeit not in the order described above): $ echo 'mod foo;' > test.rs
$ rustc ./test.rs
test.rs:1:5: 1:8 error: file not found for module `foo`
test.rs:1 mod foo;
^~~
test.rs:1:5: 1:8 help: name the file either foo.rs or foo/mod.rs inside the directory "" But this still happens for error + warning combos: use std::vec::Drain;
fn main () {
} $ rustc ./test.rs
./test.rs:1:5: 1:20 error: use of unstable library feature 'collections': recently added as part of collections reform 2
./test.rs:1 use std::vec::Drain;
^~~~~~~~~~~~~~~
./test.rs:1:5: 1:20 warning: unused import, #[warn(unused_imports)] on by default
./test.rs:1 use std::vec::Drain;
^~~~~~~~~~~~~~~
error: aborting due to previous error Though this may be deliberate since the error and warning are about different issues. |
So since helps look like they're a subdiagnostic of errors, and errors get output before their subdiagnostics, the ordering looks intentional. With the error+warning case, I think those are actually two separate diagnostics, that is, the warning is not the subdiagnostic of the error, so they shouldn't be combined. Sooo I think this issue might be done? If I'm understanding the intentionality of the current error display? |
Warnings have undergone a lot of churn lately, and some of them have been grouped together in logical ways. @jonathandturner @nikomatsakis @nrc @pnkfelix is this issue still relevant? |
I think we can close this. The main redundancy has been addressed, and I think the current handling of help messages works at least for the case described |
Agreed. |
For exemple, for the following code:
The output of rustc is:
It should be:
I don't know if there is any help message associated with an error message, but if this the case, the same issue apply.
The text was updated successfully, but these errors were encountered: