2014-12-26 15:37:56 -05:00
|
|
|
// Test sized-ness checking in substitution in impls.
|
2014-12-02 15:06:39 -08:00
|
|
|
|
2014-12-26 15:37:56 -05:00
|
|
|
// impl - unbounded
|
|
|
|
trait T2<Z> {
|
2015-02-12 10:29:52 -05:00
|
|
|
fn foo(&self, z: Z);
|
2014-12-26 15:37:56 -05:00
|
|
|
}
|
2015-02-12 10:29:52 -05:00
|
|
|
struct S4<Y: ?Sized>(Box<Y>);
|
2015-01-06 10:16:49 +13:00
|
|
|
impl<X: ?Sized> T2<X> for S4<X> {
|
2018-07-10 23:10:13 +02:00
|
|
|
//~^ ERROR the size for values of type
|
2023-10-25 10:49:24 +00:00
|
|
|
//~| ERROR not all trait items implemented
|
2014-12-02 15:06:39 -08:00
|
|
|
}
|
|
|
|
|
2014-12-26 15:37:56 -05:00
|
|
|
fn main() { }
|