]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-toml/vec_box_sized/test.rs
Merge commit '266e96785ab71834b917bf474f130a6d8fdecd4b' into sync_cg_clif-2022-10-23
[rust.git] / src / tools / clippy / tests / ui-toml / vec_box_sized / test.rs
1 struct S {
2     x: u64,
3 }
4
5 struct C {
6     y: u16,
7 }
8
9 struct Foo(Vec<Box<u8>>);
10 struct Bar(Vec<Box<u32>>);
11 struct Baz(Vec<Box<(u32, u32)>>);
12 struct BarBaz(Vec<Box<S>>);
13 struct FooBarBaz(Vec<Box<C>>);
14
15 fn main() {}