blob: 3e42cb8c1b07480bb57ea6e5f5f854626b6c68b3 [file] [log] [blame]
const fn foo(a: i32) -> Vec<i32> {
vec![1, 2, 3] //~ ERROR heap allocations are not allowed in const fn
}
fn main() {}