blob: bd121a7045dd822f82ae3073c42fc38f911107fb [file] [edit]
//! Regression test for https://github.com/rust-lang/rust/issues/3668
//!
//@ 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() {}