mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
22 lines
394 B
D
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");
|
|
}
|