// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // test that const fn signature and body errors are checked // even in array lengths, which are evaluated before check_const #![feature(const_fn)] const X : usize = 2; const fn f(x: usize) -> usize { let mut sum = 0; //~ ERROR: E0016 for i in 0..x { //~ ERROR: E0016 sum += i; } sum } #[allow(unused_variables)] fn main() { let a : [i32; f(X)]; }