File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -460,7 +460,6 @@ mul_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128
460
460
pub trait Div < Rhs = Self > {
461
461
/// The resulting type after applying the `/` operator.
462
462
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
463
- #[ rustc_const_unstable( feature = "const_ops" , issue = "90080" ) ]
464
463
type Output ;
465
464
466
465
/// Performs the `/` operation.
@@ -485,6 +484,7 @@ macro_rules! div_impl_integer {
485
484
///
486
485
#[ doc = $panic]
487
486
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
487
+ #[ rustc_const_unstable( feature = "const_ops" , issue = "90080" ) ]
488
488
impl const Div for $t {
489
489
type Output = $t;
490
490
@@ -505,6 +505,7 @@ div_impl_integer! {
505
505
macro_rules! div_impl_float {
506
506
( $( $t: ty) * ) => ( $(
507
507
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
508
+ #[ rustc_const_unstable( feature = "const_ops" , issue = "90080" ) ]
508
509
impl const Div for $t {
509
510
type Output = $t;
510
511
@@ -589,6 +590,7 @@ macro_rules! rem_impl_integer {
589
590
///
590
591
#[ doc = $panic]
591
592
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
593
+ #[ rustc_const_unstable( feature = "const_ops" , issue = "90080" ) ]
592
594
impl const Rem for $t {
593
595
type Output = $t;
594
596
You can’t perform that action at this time.
0 commit comments