blob: 423c761f1b17f61755bcdb049c760219413020c9 [file] [log] [blame] [edit]
struct S {
x: u64,
}
struct C {
y: u16,
}
struct Foo(Vec<u8>);
//~^ vec_box
struct Bar(Vec<u16>);
//~^ vec_box
struct Quux(Vec<Box<u32>>);
struct Baz(Vec<Box<(u16, u16)>>);
struct BarBaz(Vec<Box<S>>);
struct FooBarBaz(Vec<C>);
//~^ vec_box
fn main() {}