We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de0396c commit f1452fcCopy full SHA for f1452fc
src/test/ui/mir/issue-102389.rs
@@ -0,0 +1,8 @@
1
+enum Enum { A, B, C }
2
+
3
+fn func(inbounds: &Enum, array: &[i16; 3]) -> i16 {
4
+ array[*inbounds as usize]
5
+ //~^ ERROR [E0507]
6
+}
7
8
+fn main() {}
src/test/ui/mir/issue-102389.stderr
@@ -0,0 +1,9 @@
+error[E0507]: cannot move out of `*inbounds` which is behind a shared reference
+ --> $DIR/issue-102389.rs:4:11
+ |
+LL | array[*inbounds as usize]
+ | ^^^^^^^^^ move occurs because `*inbounds` has type `Enum`, which does not implement the `Copy` trait
+error: aborting due to previous error
9
+For more information about this error, try `rustc --explain E0507`.
0 commit comments