mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
141 B
Rust
9 lines
141 B
Rust
const COUNT: usize = 2;
|
|
struct Thing;
|
|
trait Dummy {}
|
|
|
|
const _: () = {
|
|
impl Dummy for Thing where [i32; COUNT]: Sized {}
|
|
};
|
|
|
|
fn main() {}
|