-
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
assertion failure while compiling code with multibytes characters #11178
Comments
My own observations with box drawing characters is that the precise position of things matters:
I had it thus and it didn't work. I removed the I guess there's some dodgy multibyte character counting happening somewhere, or something very similar. |
I originally got this error (1~2 months ago) when I tried to build small subset of libstd: when I added some lines from ascii.rs, rustc ICEd. |
Probably same as #11136. Hit the same issue today, and worked around it by shuffling some lines: SiegeLord/RustAlgebloat@78bc6e6. |
I managed to wrangle a backtrace out of rustc: https://gist.github.com/lfairy/9011238 From what I've seen, the ICE happens right after |
file. Previously multibyte UTF-8 chars were being recorded as byte offsets from the start of the file, and then later compared against global byte positions, resulting in the compiler possibly thinking it had a byte position pointing inside a multibyte character, if there were multibyte characters in any non-crate files. (Although, sometimes the byte offsets line up just right to not ICE, but that was a coincidence.) Fixes rust-lang#11136. Fixes rust-lang#11178.
file. Previously multibyte UTF-8 chars were being recorded as byte offsets from the start of the file, and then later compared against global byte positions, resulting in the compiler possibly thinking it had a byte position pointing inside a multibyte character, if there were multibyte characters in any non-crate files. (Although, sometimes the byte offsets line up just right to not ICE, but that was a coincidence.) Fixes rust-lang#11136. Fixes rust-lang#11178.
Allow `Self::cmp(self, other)` as a correct impl Fixes rust-lang#11178 Also no longer checks if the method name is *just* cmp, but the path. That was an oversight on my part ^^ r? `@xFrednet` (and `@blyxyas` too!) changelog: [`incorrect_partial_ord_impl_on_ord_type`]: Now allows non-method calls to `cmp` like `Self::cmp(self, other)`
by @klutzy, this is related to #4780
test code:
I used 2 files
a.rs
b.rs
error
rustc version is d2a4a10
The text was updated successfully, but these errors were encountered: