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
It looks like binary float literals were removed in 01cc9ec, and perhaps at some point later on we fixed rejecting these literals. Regardless, this is a real error now.
foo.rs:1:24: 1:32 error: binary float literal is not supported
foo.rs:1 fn main() { assert_eq!(0b101f64, 101.0) }
^~~~~~~~
new lint: string-slice
This is a restriction lint to highlight code that should have tests containing non-ascii characters. See rust-lang#6623.
changelog: new lint: [`string-slice`]
(The assertion is from the
0bf
.)Also:
Either they should be fully supported, or not at all.
The text was updated successfully, but these errors were encountered: