dmd/compiler/test/compilable/test23166.d
2022-07-09 18:53:07 +02:00

22 lines
394 B
D

// 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");
}