about summary refs log tree commit diff
path: root/tests/ui/consts/const-slice-array-deref.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-01-31 00:11:55 +0000
committerMichael Goulet <michael@errs.io>2025-01-31 00:12:09 +0000
commitd6e8c7f7a0813c1f8cd42c00cb43d4c1b3f562ac (patch)
tree8c5f4395ac5d22d665b513b9af03a4b43e2ef08f /tests/ui/consts/const-slice-array-deref.rs
parenta6434ef9c0246fa39eecb34e22807da2a68f3904 (diff)
downloadrust-d6e8c7f7a0813c1f8cd42c00cb43d4c1b3f562ac.tar.gz
rust-d6e8c7f7a0813c1f8cd42c00cb43d4c1b3f562ac.zip
Delay a bug when indexing unsized slices
Diffstat (limited to 'tests/ui/consts/const-slice-array-deref.rs')
-rw-r--r--tests/ui/consts/const-slice-array-deref.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/consts/const-slice-array-deref.rs b/tests/ui/consts/const-slice-array-deref.rs
new file mode 100644
index 00000000000..9d84ed4bdb0
--- /dev/null
+++ b/tests/ui/consts/const-slice-array-deref.rs
@@ -0,0 +1,9 @@
+const ONE: [u16] = [1];
+//~^ ERROR the size for values of type `[u16]` cannot be known at compilation time
+//~| ERROR the size for values of type `[u16]` cannot be known at compilation time
+//~| ERROR mismatched types
+
+const TWO: &'static u16 = &ONE[0];
+//~^ ERROR cannot move a value of type `[u16]`
+
+fn main() {}