summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsized-locals/unsized-exprs2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unsized-locals/unsized-exprs2.rs')
-rw-r--r--src/test/ui/unsized-locals/unsized-exprs2.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/unsized-locals/unsized-exprs2.rs b/src/test/ui/unsized-locals/unsized-exprs2.rs
deleted file mode 100644
index 127d8717e..000000000
--- a/src/test/ui/unsized-locals/unsized-exprs2.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-#![feature(unsized_tuple_coercion, unsized_fn_params)]
-
-struct A<X: ?Sized>(X);
-
-fn udrop<T: ?Sized>(_x: T) {}
-fn foo() -> Box<[u8]> {
- Box::new(*b"foo")
-}
-fn tfoo() -> Box<(i32, [u8])> {
- Box::new((42, *b"foo"))
-}
-fn afoo() -> Box<A<[u8]>> {
- Box::new(A(*b"foo"))
-}
-
-impl std::ops::Add<i32> for A<[u8]> {
- type Output = ();
- fn add(self, _rhs: i32) -> Self::Output {}
-}
-
-fn main() {
- udrop::<[u8]>(foo()[..]);
- //~^ERROR cannot move out of type `[u8]`, a non-copy slice
-}