mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
15 lines
212 B
Rust
15 lines
212 B
Rust
struct S {
|
|
x: u64,
|
|
}
|
|
|
|
struct C {
|
|
y: u16,
|
|
}
|
|
|
|
struct Foo(Vec<Box<u8>>);
|
|
struct Bar(Vec<Box<u32>>);
|
|
struct Baz(Vec<Box<(u32, u32)>>);
|
|
struct BarBaz(Vec<Box<S>>);
|
|
struct FooBarBaz(Vec<Box<C>>);
|
|
|
|
fn main() {}
|