2024-02-16 20:02:50 +00:00

9 lines
182 B
Rust

//@ 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() {}