summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test23166.d
blob: 66da4cd69637e570d9c2e033d9c4c6d2e68b89e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// REQUIRED_ARGS: -inline

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

// seg fault with -inline

bool __equals(scope const char[] lhs, scope const char[] rhs)
{
    if (lhs.length != rhs.length)
        return false;

    {
        import core.stdc.string : memcmp;
        return lhs.length == 0;
    }
    return true;
}

int test(string type)
{
    return __equals(type, "as-is");
}