File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1142,11 +1142,11 @@ macro_rules! int_impl {
1142
1142
///
1143
1143
/// ```should_panic
1144
1144
/// #![feature(norem_div)]
1145
- #[ doc = concat!( "129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1145
+ #[ doc = concat!( "let _ = 129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1146
1146
/// ```
1147
1147
/// ```should_panic
1148
1148
/// #![feature(norem_div)]
1149
- #[ doc = concat!( stringify!( $SelfT) , "::MIN.norem_div(-1);" ) ]
1149
+ #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.norem_div(-1);" ) ]
1150
1150
/// ```
1151
1151
#[ unstable(
1152
1152
feature = "norem_div" ,
Original file line number Diff line number Diff line change @@ -1050,7 +1050,7 @@ macro_rules! uint_impl {
1050
1050
///
1051
1051
/// ```should_panic
1052
1052
/// #![feature(norem_div)]
1053
- #[ doc = concat!( "129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1053
+ #[ doc = concat!( "let _ = 129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1054
1054
/// ```
1055
1055
#[ unstable(
1056
1056
feature = "norem_div" ,
You can’t perform that action at this time.
0 commit comments