os-rust/tests/ui/unsized/unsized6.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.2 KiB
Rust
Raw Normal View History

// Test `?Sized` local variables.
2015-04-17 22:12:20 -07:00
trait T {}
fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
let _: W; // <-- this is OK, no bindings created, no initializer.
let _: (isize, (X, isize));
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let y: Y;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let y: (isize, (Z, usize));
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
}
fn f2<X: ?Sized, Y: ?Sized>(x: &X) {
let y: X;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let y: (isize, (Y, isize));
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
}
2015-01-06 10:16:49 +13:00
fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
let y: X = *x1;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let y = *x2;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let (y, z) = (*x3, 4);
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
}
2015-01-07 11:33:42 +13:00
fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
let y: X = *x1;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let y = *x2;
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
let (y, z) = (*x3, 4);
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
}
fn g1<X: ?Sized>(x: X) {}
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
fn g2<X: ?Sized + T>(x: X) {}
2018-07-10 23:10:13 +02:00
//~^ ERROR the size for values of type
pub fn main() {
}