@@ -386,24 +386,30 @@ fn check_terminator<'tcx>(
386
386
387
387
fn is_stable_const_fn ( tcx : TyCtxt < ' _ > , def_id : DefId , msrv : & Msrv ) -> bool {
388
388
tcx. is_const_fn ( def_id)
389
- && tcx. lookup_const_stability ( def_id) . is_none_or ( |const_stab| {
390
- if let rustc_attr_parsing:: StabilityLevel :: Stable { since, .. } = const_stab. level {
391
- // Checking MSRV is manually necessary because `rustc` has no such concept. This entire
392
- // function could be removed if `rustc` provided a MSRV-aware version of `is_stable_const_fn`.
393
- // as a part of an unimplemented MSRV check https://github.com/rust-lang/rust/issues/65262.
389
+ && tcx
390
+ . lookup_const_stability ( def_id)
391
+ . or_else ( || {
392
+ tcx. trait_of_item ( def_id)
393
+ . and_then ( |trait_def_id| tcx. lookup_const_stability ( trait_def_id) )
394
+ } )
395
+ . is_none_or ( |const_stab| {
396
+ if let rustc_attr_parsing:: StabilityLevel :: Stable { since, .. } = const_stab. level {
397
+ // Checking MSRV is manually necessary because `rustc` has no such concept. This entire
398
+ // function could be removed if `rustc` provided a MSRV-aware version of `is_stable_const_fn`.
399
+ // as a part of an unimplemented MSRV check https://github.com/rust-lang/rust/issues/65262.
394
400
395
- let const_stab_rust_version = match since {
396
- StableSince :: Version ( version) => version,
397
- StableSince :: Current => RustcVersion :: CURRENT ,
398
- StableSince :: Err => return false ,
399
- } ;
401
+ let const_stab_rust_version = match since {
402
+ StableSince :: Version ( version) => version,
403
+ StableSince :: Current => RustcVersion :: CURRENT ,
404
+ StableSince :: Err => return false ,
405
+ } ;
400
406
401
- msrv. meets ( const_stab_rust_version)
402
- } else {
403
- // Unstable const fn, check if the feature is enabled.
404
- tcx. features ( ) . enabled ( const_stab. feature ) && msrv. current ( ) . is_none ( )
405
- }
406
- } )
407
+ msrv. meets ( const_stab_rust_version)
408
+ } else {
409
+ // Unstable const fn, check if the feature is enabled.
410
+ tcx. features ( ) . enabled ( const_stab. feature ) && msrv. current ( ) . is_none ( )
411
+ }
412
+ } )
407
413
}
408
414
409
415
fn is_ty_const_destruct < ' tcx > ( tcx : TyCtxt < ' tcx > , ty : Ty < ' tcx > , body : & Body < ' tcx > ) -> bool {
0 commit comments