summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-3668-2.fixed
blob: a95781c6edc82c8e2fb98b97d53e3bda867cb40b (plain)
1
2
3
4
5
6
7
8
// 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() {}