We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While issue #8706 is fixed now in most places, I have found a case where the error indicator is still mispositioned:
let b = "hello"; println!("🦀🦀🦀🦀🦀"); let _a = b + ", World!";
gives a mispositioned span:
| 3 | println!("🦀🦀🦀🦀🦀"); let _a = b.to_owned() + ", World!"; | ^^^^^^^^^^^^
on rust stable (1.23.0) as well as beta (1.24.0-beta.2) and nightly (73ac5d6 2018-01-11).
It should underline the b.to_owned().
b.to_owned()
I believe that this issue has the same root cause as #47377.
The text was updated successfully, but these errors were encountered:
#47407 fixed this
Sorry, something went wrong.
No branches or pull requests
While issue #8706 is fixed now in most places, I have found a case where the error indicator is still mispositioned:
gives a mispositioned span:
on rust stable (1.23.0) as well as beta (1.24.0-beta.2) and nightly (73ac5d6 2018-01-11).
It should underline the
b.to_owned()
.I believe that this issue has the same root cause as #47377.
The text was updated successfully, but these errors were encountered: