blob: 315811cda18a62a1b9e0fcc05596b08700f47e34 [file] [log] [blame]
// https://bugzilla.gdcproject.org/show_bug.cgi?id=141
// { dg-do run }
// { dg-skip-if "needs gcc/config.d" { ! d_runtime } }
bool test141(int a)
{
return a > (a + 1);
}
void main()
{
assert(test141(int.min) == false);
assert(test141(int.max) == true);
}