blob: ead67d5ed1b1eaee50f973aab9eddc6c9a6e1771 [file] [log] [blame]
// run-pass
const COUNT: usize = 2;
struct Thing;
trait Dummy {}
const _: () = {
impl Dummy for Thing where [i32; COUNT]: Sized {}
};
fn main() {}