aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/consts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_ty/src/consts.rs')
-rw-r--r--crates/hir_ty/src/consts.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/hir_ty/src/consts.rs b/crates/hir_ty/src/consts.rs
index 77d2a7a05..0044b1cff 100644
--- a/crates/hir_ty/src/consts.rs
+++ b/crates/hir_ty/src/consts.rs
@@ -4,7 +4,8 @@
4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
5pub enum ConstScalar { 5pub enum ConstScalar {
6 // for now, we only support the trivial case of constant evaluating the length of an array 6 // for now, we only support the trivial case of constant evaluating the length of an array
7 Usize(usize), 7 // Note that this is u64 because the target usize may be bigger than our usize
8 Usize(u64),
8 9
9 /// Case of an unknown value that rustc might know but we don't 10 /// Case of an unknown value that rustc might know but we don't
10 Unknown, 11 Unknown,