6b59675449
It does not seem to be necessary
10 lines
141 B
Rust
10 lines
141 B
Rust
const COUNT: usize = 2;
|
|
struct Thing;
|
|
trait Dummy {}
|
|
|
|
const _: () = {
|
|
impl Dummy for Thing where [i32; COUNT]: Sized {}
|
|
};
|
|
|
|
fn main() {}
|