rust/tests/ui/unsized/unsized3.rs

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

51 lines
875 B
Rust
Raw Normal View History

// Test sized-ness checking in substitution within fn bodies..
use std::marker;
// Unbounded.
2015-01-05 21:16:49 +00:00
fn f1<X: ?Sized>(x: &X) {
f2::<X>(x);
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
}
fn f2<X>(x: &X) {
}
// Bounded.
trait T {
fn foo(&self) { }
}
2015-01-05 21:16:49 +00:00
fn f3<X: ?Sized + T>(x: &X) {
f4::<X>(x);
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
}
fn f4<X: T>(x: &X) {
}
fn f5<Y>(x: &Y) {}
2015-01-05 21:16:49 +00:00
fn f6<X: ?Sized>(x: &X) {}
// Test with unsized struct.
2015-01-05 21:16:49 +00:00
struct S<X: ?Sized> {
x: X,
}
2015-01-05 21:16:49 +00:00
fn f8<X: ?Sized>(x1: &S<X>, x2: &S<X>) {
f5(x1);
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
f6(x2); // ok
}
// Test some tuples.
2016-10-24 18:55:56 +00:00
fn f9<X: ?Sized>(x1: Box<S<X>>) {
2015-01-31 16:23:42 +00:00
f5(&(*x1, 34));
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
}
2016-10-24 18:55:56 +00:00
fn f10<X: ?Sized>(x1: Box<S<X>>) {
f5(&(32, *x1));
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
//~| ERROR the size for values of type
}
pub fn main() {}