dfmt/tests/issue0099.d
Hackerpilot 0b7bc366f2 Fix #99
2015-03-14 03:27:25 -07:00

37 lines
648 B
D

unittest
{
if (a)
{
if (b)
if (c)
{
if (excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName)
excessivelyLongFunctionName(true);
else
{
excessivelyLongFunctionName(false);
}
}
else
a();
}
}
unittest
{
if (a)
{
if (b)
{
if (c)
{
if (excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName)
excessivelyLongFunctionName(true);
else
{
excessivelyLongFunctionName(false);
}
}
}
}
}