mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
240 B
Rust
13 lines
240 B
Rust
// Test sized-ness checking in substitution in impls.
|
|
|
|
// impl - unbounded
|
|
trait T2<Z> {
|
|
fn foo(&self, z: Z);
|
|
}
|
|
struct S4<Y: ?Sized>(Box<Y>);
|
|
impl<X: ?Sized> T2<X> for S4<X> {
|
|
//~^ ERROR the size for values of type
|
|
}
|
|
|
|
fn main() { }
|