blob: a95781c6edc82c8e2fb98b97d53e3bda867cb40b [file] [log] [blame]
// run-rustfix
#![allow(unused_variables, dead_code)]
fn f(x:isize) {
let child: isize = x + 1;
//~^ ERROR attempt to use a non-constant value in a constant
}
fn main() {}