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