@@ -252,6 +252,7 @@ macro_rules! int_impl {
252
252
Basic usage:
253
253
254
254
```
255
+ #![feature(assoc_int_consts)]
255
256
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MIN, " , stringify!( $Min) , ");" ,
256
257
$EndFeature, "
257
258
```" ) ,
@@ -267,6 +268,7 @@ $EndFeature, "
267
268
Basic usage:
268
269
269
270
```
271
+ #![feature(assoc_int_consts)]
270
272
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MAX, " , stringify!( $Max) , ");" ,
271
273
$EndFeature, "
272
274
```" ) ,
@@ -2361,6 +2363,7 @@ macro_rules! uint_impl {
2361
2363
Basic usage:
2362
2364
2363
2365
```
2366
+ #![feature(assoc_int_consts)]
2364
2367
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MIN, 0);" , $EndFeature, "
2365
2368
```" ) ,
2366
2369
#[ unstable( feature = "assoc_int_consts" , reason = "recently added" , issue = "68490" ) ]
@@ -2375,6 +2378,7 @@ Basic usage:
2375
2378
Basic usage:
2376
2379
2377
2380
```
2381
+ #![feature(assoc_int_consts)]
2378
2382
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MAX, " , stringify!( $MaxV) , ");" ,
2379
2383
$EndFeature, "
2380
2384
```" ) ,
0 commit comments