11 lines
153 B
Rust
11 lines
153 B
Rust
|
// run-pass
|
||
|
const COUNT: usize = 2;
|
||
|
struct Thing;
|
||
|
trait Dummy {}
|
||
|
|
||
|
const _: () = {
|
||
|
impl Dummy for Thing where [i32; COUNT]: Sized {}
|
||
|
};
|
||
|
|
||
|
fn main() {}
|