blob: bf100755b90689732624363f056d0a70c3c1aba1 [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() {}