summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/negation_function.rs
blob: b592f9c00ef65c0870e0e474664906c5c73f48d8 (plain)
1
2
3
4
5
6
7
fn ret1() -> i32 {
    return 1;
}

fn main() {
    let _a = -ret1();
}