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