-
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
lifetime misformatted (leading &) in rustc note output #10291
Comments
that's a holdover from the days before |
If no one else is working on this, I'll take it. |
Apologies for how long this is taking, I'm still kind of learning the internals. I have a question, though. I have fixed this issue, but I'm now getting output like:
The second |
I think those types should be written |
Or perhaps, better yet, |
Given that work on this issue seems to have stagnated somewhat, would it be OK if I could take this issue? I was thinking that perhaps Also, should all references be annotated thus? It seems slightly unnecessary to state the lifetime in an error like |
On 5/19/2014 10:56 PM, P1start wrote:
|
This changes certain error messages about lifetimes so that they display lifetimes without an `&`. Fixes rust-lang#10291.
This changes certain error messages about lifetimes so that they display lifetimes without an `&`. Fixes #10291.
…tion, r=dswij Negate suggestions when needed in `bool_assert_comparison` changelog: none assuming this gets into the same release as rust-lang#10218 Fixes rust-lang#10291 r? `@dswij` Thanks to `@black-puppydog` for spotting it early
Consider compile_fail/regions-nested-fns.rs:
When you run this, in addition to various error output, you will also see messages prefixed by
note:
. In those messages, when a lifetime is printed, it is printed with a leading&
in addition to the'
that is part of its name. For example:[...] the lifetime cannot outlive the lifetime &'z1 as defined [...]
.In my opinion, this is confusing.
'z
is a lifetime, while&'z
are the first three characters of some (incomplete) type expression that is missing the pointed-to type (along with a potentialmut
qualifier).I suspect the leading
&
is arising probably some artifact of how the code is implementing thefmt::Default
trait; it might also involve the use ofbound_region_ptr_to_str
as the implementation of how lifetimes are printed (even though the former says it is for printing ptrs, not lifetimes).Also, there is an extra space between
&'z
andas defined
above.The text was updated successfully, but these errors were encountered: