(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test17399.d
/* REQUIRED_ARGS: -inline
 */

// https://issues.dlang.org/show_bug.cgi?id=17399

pragma(inline, true)
uint addu(uint x, uint y, ref bool overflow) {
    uint r = x + y;
    if (r < x || r < y)
        overflow = true;
    return r;
}

void foo() {
    uint a, b;
    bool over;
    addu(a, b, over);
}