-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.regression-from-stable-to-betaPerformance or correctness regression from stable to beta.Performance or correctness regression from stable to beta.relnotesMarks issues that should be documented in the release notes of the next release.Marks issues that should be documented in the release notes of the next release.
Description
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:417:17
|
417 | Self::from_bits(bits)
| ^^^^^^^^^^^^^^^
...
609 | mk_impl!(f32, u32, i16, u8, u32, 8, 23);
| ---------------------------------------- in this macro invocation
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:417:17
|
417 | Self::from_bits(bits)
| ^^^^^^^^^^^^^^^
...
610 | mk_impl!(f64, u64, i16, u16, u64, 11, 52);
| ------------------------------------------ in this macro invocation
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:431:17
|
431 | Self::from_bits(bits)
| ^^^^^^^^^^^^^^^
...
609 | mk_impl!(f32, u32, i16, u8, u32, 8, 23);
| ---------------------------------------- in this macro invocation
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:431:17
|
431 | Self::from_bits(bits)
| ^^^^^^^^^^^^^^^
...
610 | mk_impl!(f64, u64, i16, u16, u64, 11, 52);
| ------------------------------------------ in this macro invocation
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:458:17
|
458 | Self::from_bits(
| ^^^^^^^^^^^^^^^
...
609 | mk_impl!(f32, u32, i16, u8, u32, 8, 23);
| ---------------------------------------- in this macro invocation
error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)
--> src/lib.rs:458:17
|
458 | Self::from_bits(
| ^^^^^^^^^^^^^^^
...
610 | mk_impl!(f64, u64, i16, u16, u64, 11, 52);
| ------------------------------------------ in this macro invocation
error: aborting due to 6 previous errors
error: build failed
This is due to a new unstable inherent method introduced in #39271.
Mentioned already here.
Metadata
Metadata
Assignees
Labels
T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.regression-from-stable-to-betaPerformance or correctness regression from stable to beta.Performance or correctness regression from stable to beta.relnotesMarks issues that should be documented in the release notes of the next release.Marks issues that should be documented in the release notes of the next release.