rust/src/test/ui/unsized-locals/unsized-exprs2.rs

26 lines
563 B
Rust
Raw Normal View History

2020-10-16 15:46:59 -05:00
#![feature(unsized_tuple_coercion, unsized_locals, unsized_fn_params)]
2020-05-23 07:35:22 -05:00
//~^ WARN the feature `unsized_locals` is incomplete
2018-05-28 10:11:34 -05:00
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
2018-05-28 10:11:34 -05:00
}