about summary refs log tree commit diff
path: root/src/test/ui/mir/issue-67947.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mir/issue-67947.stderr')
-rw-r--r--src/test/ui/mir/issue-67947.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/mir/issue-67947.stderr b/src/test/ui/mir/issue-67947.stderr
deleted file mode 100644
index 7697a411eb4..00000000000
--- a/src/test/ui/mir/issue-67947.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0161]: cannot move a value of type `str`
-  --> $DIR/issue-67947.rs:2:13
-   |
-LL |     A: [(); { *"" }.len()],
-   |             ^^^^^^^ the size of `str` cannot be statically determined
-
-error[E0507]: cannot move out of a shared reference
-  --> $DIR/issue-67947.rs:2:15
-   |
-LL |     A: [(); { *"" }.len()],
-   |               ^^^ move occurs because value has type `str`, which does not implement the `Copy` trait
-
-error: aborting due to 2 previous errors
-
-Some errors have detailed explanations: E0161, E0507.
-For more information about an error, try `rustc --explain E0161`.