summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/nested_fn1.rs
blob: 075b5dba8e049ba22f9383ca44ecc45aefc7fc29 (plain)
1
2
3
4
5
6
7
8
9
10
pub fn main() {
    let a = 123;

    fn test(x: i32) -> i32 {
        x + 456
    }

    let b;
    b = test(a);
}