]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/min_const_fn/bad_const_fn_body_ice.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / consts / min_const_fn / bad_const_fn_body_ice.rs
1 const fn foo(a: i32) -> Vec<i32> {
2 vec![1, 2, 3]
3 //~^ ERROR allocations are not allowed
4 //~| ERROR calls in constant functions
5 }
6
7 fn main() {}