diff options
author | Jade <[email protected]> | 2021-05-11 23:18:45 +0100 |
---|---|---|
committer | Jade <[email protected]> | 2021-05-11 23:18:45 +0100 |
commit | f28c053c677203f4dd101222460081dd97c1f440 (patch) | |
tree | b962313b55bfa54ea8385e65f4559725c64b38a2 /crates/hir_ty/src/infer | |
parent | dc63fea427280ff278bf89a8b9c78df606009910 (diff) |
address review by @eddyb
Diffstat (limited to 'crates/hir_ty/src/infer')
-rw-r--r-- | crates/hir_ty/src/infer/expr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/infer/expr.rs b/crates/hir_ty/src/infer/expr.rs index 9aec8a236..a7e720f88 100644 --- a/crates/hir_ty/src/infer/expr.rs +++ b/crates/hir_ty/src/infer/expr.rs | |||
@@ -746,7 +746,7 @@ impl<'a> InferenceContext<'a> { | |||
746 | ty: TyKind::Scalar(Scalar::Uint(UintTy::Usize)).intern(&Interner), | 746 | ty: TyKind::Scalar(Scalar::Uint(UintTy::Usize)).intern(&Interner), |
747 | value: ConstValue::Concrete(chalk_ir::ConcreteConst { | 747 | value: ConstValue::Concrete(chalk_ir::ConcreteConst { |
748 | interned: len | 748 | interned: len |
749 | .map(|len| ConstScalar::Usize(len)) | 749 | .map(|len| ConstScalar::Usize(len as u64)) |
750 | .unwrap_or(ConstScalar::Unknown), | 750 | .unwrap_or(ConstScalar::Unknown), |
751 | }), | 751 | }), |
752 | }; | 752 | }; |