2014-09-12 14:45:39 +00:00
|
|
|
// Test sized-ness checking in substitution in impls.
|
|
|
|
|
2015-04-18 05:12:20 +00:00
|
|
|
trait T {}
|
2014-09-12 14:45:39 +00:00
|
|
|
|
|
|
|
// I would like these to fail eventually.
|
|
|
|
// impl - bounded
|
|
|
|
trait T1<Z: T> {
|
2015-02-12 15:29:52 +00:00
|
|
|
fn dummy(&self) -> Z;
|
2014-09-12 14:45:39 +00:00
|
|
|
}
|
2015-02-12 15:29:52 +00:00
|
|
|
|
|
|
|
struct S3<Y: ?Sized>(Box<Y>);
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<X: ?Sized + T> T1<X> for S3<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-09-12 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|