mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
11 lines
175 B
Rust
11 lines
175 B
Rust
#![allow(non_local_definitions)]
|
|
|
|
const COUNT: usize = 2;
|
|
struct Thing;
|
|
trait Dummy {}
|
|
|
|
const _: () = {
|
|
impl Dummy for Thing where [i32; COUNT]: Sized {}
|
|
};
|
|
|
|
fn main() {}
|