Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 35a5be2

Browse files
committedMay 10, 2024
Also expand weak alias tys inside consts inside expand_weak_alias_tys
1 parent 7c4ac06 commit 35a5be2

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_middle/src/ty

1 file changed

+1
-1
lines changed
 

‎compiler/rustc_middle/src/ty/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ impl<'tcx> TypeFolder<TyCtxt<'tcx>> for WeakAliasTypeExpander<'tcx> {
11301130
}
11311131

11321132
fn fold_const(&mut self, ct: ty::Const<'tcx>) -> ty::Const<'tcx> {
1133-
if !ct.ty().has_type_flags(ty::TypeFlags::HAS_TY_WEAK) {
1133+
if !ct.has_type_flags(ty::TypeFlags::HAS_TY_WEAK) {
11341134
return ct;
11351135
}
11361136
ct.super_fold_with(self)

0 commit comments

Comments
 (0)
Failed to load comments.