aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/const3.rs
blob: 22dc3d356cacca470699724b7ee3bc17d72ba223 (plain)
1
2
3
4
5
6
7
fn size() -> usize {
    15
}

fn main() {
    let a = [15; size()]; // { dg-error "only functions marked as .const. are allowed to be called from constant contexts" }
}