File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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 {
11421142 ///
11431143 /// ```should_panic
11441144 /// #![feature(norem_div)]
1145- #[ doc = concat!( "129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1145+ #[ doc = concat!( "let _ = 129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
11461146 /// ```
11471147 /// ```should_panic
11481148 /// #![feature(norem_div)]
1149- #[ doc = concat!( stringify!( $SelfT) , "::MIN.norem_div(-1);" ) ]
1149+ #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.norem_div(-1);" ) ]
11501150 /// ```
11511151 #[ unstable(
11521152 feature = "norem_div" ,
Original file line number Diff line number Diff line change @@ -1050,7 +1050,7 @@ macro_rules! uint_impl {
10501050 ///
10511051 /// ```should_panic
10521052 /// #![feature(norem_div)]
1053- #[ doc = concat!( "129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
1053+ #[ doc = concat!( "let _ = 129" , stringify!( $SelfT) , ".norem_div(2);" ) ]
10541054 /// ```
10551055 #[ unstable(
10561056 feature = "norem_div" ,
You can’t perform that action at this time.
0 commit comments