2014-12-26 20:37:56 +00:00
|
|
|
// Test sized-ness checking in substitution in impls.
|
2014-12-02 23:06:39 +00:00
|
|
|
|
2014-12-26 20:37:56 +00:00
|
|
|
// impl - unbounded
|
|
|
|
trait T2<Z> {
|
2015-02-12 15:29:52 +00:00
|
|
|
fn foo(&self, z: Z);
|
2014-12-26 20:37:56 +00:00
|
|
|
}
|
2015-02-12 15:29:52 +00:00
|
|
|
struct S4<Y: ?Sized>(Box<Y>);
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<X: ?Sized> T2<X> for S4<X> {
|
2018-07-10 21:10:13 +00: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 23:06:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 20:37:56 +00:00
|
|
|
fn main() { }
|