Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upTracking issue for `illegal_floating_point_constant_pattern` compatibility lint #36890
Comments
This comment has been minimized.
This comment has been minimized.
|
@nikomatsakis, could you write a description for this? |
steveklabnik
added
the
A-lint
label
Oct 7, 2016
This comment has been minimized.
This comment has been minimized.
|
@petrochenkov done |
brson
added
the
B-unstable
label
Mar 1, 2017
This comment has been minimized.
This comment has been minimized.
|
I'm confused... I'm working on documenting patterns in the book. This issue's description seems to indicate that this code:
should currently cause an error (since the lints have now become hard errors). However, this code using floating point literals currently works just fine without any errors or warnings and with the expected behavior. It's only if I put the floating point value in a constant that I get the error mentioned in this tracking issue. So what was the intent here? Only to disallow matching on floating point constants, in which case rustc is correct and this issue's description is incorrect, or to disallow matching on floating point literals, in which case this issue's description is correct and rustc's current implementation is incorrect...? |
This comment has been minimized.
This comment has been minimized.
|
@carols10cents argh, that...seems like a rather glaring oversight! I think the intention was not to accept those examples! |
This comment has been minimized.
This comment has been minimized.
|
Yay, I found a bug!!! Uhhh... i mean... boo, a bug! ;) Should I file a new issue or is this issue sufficient...? |
This comment has been minimized.
This comment has been minimized.
|
@carols10cents sigh. I suppose a new issue would be helpful. |
carols10cents
referenced this issue
Apr 12, 2017
Closed
Matching on floating-point literal values is totally allowed and shouldn't be #41255
This comment has been minimized.
This comment has been minimized.
|
Done! #41255 |
This comment has been minimized.
This comment has been minimized.
All the language changes that I can find mandated in https://github.com/rust-lang/rfcs/blob/master/text/1445-restrict-constants-in-patterns.md are about using in patterns
This breaking change is not part of an accepted RFC, as far as I can tell. The only part of RFC 1445 that mentions struct literals is one example in the motivation section. Am I missing something?
Is that accurate? These PRs merged in 2016 but Servo’s code that using float literals in pattern started breaking today, presumably with #41293. |
petrochenkov
referenced this issue
May 21, 2017
Merged
Turn sufficiently old compatibility lints into hard errors #42136
nikomatsakis
added
the
T-lang
label
May 25, 2017
bors
added a commit
that referenced
this issue
Jun 1, 2017
frewsxcv
added a commit
to frewsxcv/rust
that referenced
this issue
Jun 1, 2017
bors
closed this
in
#42136
Jun 1, 2017
This comment has been minimized.
This comment has been minimized.
leonardo-m
commented
Jun 19, 2017
•
|
See a problem I'm having: #42663 |
petrochenkov commentedOct 1, 2016
•
edited
This is the summary issue for the
illegal_floating_point_constant_patternfuture-compatibility warning and other related errors. The goal of
this page is describe why this change was made and how you can fix
code that is affected by it. It also provides a place to ask questions
or register a complaint if you feel the change should not be made. For
more information on the policy around future-compatibility warnings,
see our breaking change policy guidelines.
What is the warning for?
Rust 1.0 accepted a number of patterns -- and in particular accepted constant in patterns --
in a broader range of situations that was originally intended. RFC 1445 spelled out
some restrictions on what kinds of constants can be used in patterns, at least until the
final semantics are affirmatively decided. Among the changes was the ruling that floating
point values should not be usable in patterns.
This means that a match like this:
should be written to:
Among other things, this clarifies that the semantics are the same as
==normally uses. So e.g.0and-0compare equal, andNaNcompares unequal to everything (including itself).When will this warning become a hard error?
At the beginning of each 6-week release cycle, the Rust compiler team
will review the set of outstanding future compatibility warnings and
nominate some of them for Final Comment Period. Toward the end of
the cycle, we will review any comments and make a final determination
whether to convert the warning into a hard error or remove it
entirely.
Current status
illegal_floating_point_constant_patternlint as warn-by-defaultillegal_floating_point_constant_patternlint deny-by-defaultillegal_floating_point_constant_patternlint a hard error # # #