-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
--verbose
should imply -Z write-long-types-to-disk=no
#119130
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
D-papercut
Diagnostics: An error or lint that needs small tweaks.
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
rustbot
added
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
A-diagnostics
Area: Messages for errors, warnings, and lints
labels
Dec 19, 2023
estebank
added
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
D-papercut
Diagnostics: An error or lint that needs small tweaks.
and removed
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
labels
Dec 19, 2023
@rustbot claim |
@rustbot claim |
@yossydev |
@rustbot claim |
note this will be annoying to work on until #119129 lands since currently |
And it has now landed in main. |
Dylan-DPC
added a commit
to Dylan-DPC/rust
that referenced
this issue
Feb 21, 2024
…compiler-errors Make --verbose imply -Z write-long-types-to-disk=no When shortening the type it is necessary to take into account the `--verbose` flag, if it is activated, we must always show the entire type and not write it in a file. Fixes: rust-lang#119130
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Feb 21, 2024
Rollup merge of rust-lang#121328 - ffmancera:ff/verbose_long_type, r=compiler-errors Make --verbose imply -Z write-long-types-to-disk=no When shortening the type it is necessary to take into account the `--verbose` flag, if it is activated, we must always show the entire type and not write it in a file. Fixes: rust-lang#119130
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
D-papercut
Diagnostics: An error or lint that needs small tweaks.
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
see https://rust-lang.zulipchat.com/#narrow/stream/233931-t-compiler.2Fmajor-changes/topic/uplift.20some.20-Zverbose.20calls.20and.20rename.20to.E2.80.A6.20compiler-team.23706, #119129
--verbose
should imply-Z write-long-types-to-disk=no
. the code inty_string_with_limit
should take--verbose
into account (apparently this affectsTy::sort_string
, i'm not familiar with this code). writing a file to disk should suggest passing--verbose
.cc @estebank
@rustbot label A-diagnostics
The text was updated successfully, but these errors were encountered: