You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the lack of checking (i.e. right before libsyntax/parse/lexer.rs:434), the current lexer parses 0x12.3 as a synonym to 12.3 (!). Moreover 0xAA.5 triggers an assertion failure from APFloat. Tangentially related to issue #1433.
The text was updated successfully, but these errors were encountered:
Fix FP for `boxed_local` lint in default trait fn impl
Fix FP on default trait function implementation on `boxed_local` lint.
Maybe I checked too much when looking if `self` is carrying `Self` in its bound type.
I can't find a good test case for this, so it could be too much conservative.
Let me know if you think only detecting `self` parameter is enough.
Fixes: rust-lang#4804
changelog: none
Due to the lack of checking (i.e. right before libsyntax/parse/lexer.rs:434), the current lexer parses
0x12.3
as a synonym to12.3
(!). Moreover0xAA.5
triggers an assertion failure fromAPFloat
. Tangentially related to issue #1433.The text was updated successfully, but these errors were encountered: