blob: a25e3ba5fa89f9fa269853bbd47e68a41bdb9ce6 [file] [log] [blame]
fn main() {
let v = vec![0];
const l: usize = v.count(); //~ ERROR attempt to use a non-constant value in a constant
let s: [u32; l] = v.into_iter().collect();
//~^ ERROR evaluation of constant value failed
//~^^ ERROR a value of type
}