This commit is contained in:
Hackerpilot 2018-01-29 14:18:59 -08:00
parent 19e774ebf7
commit 1ca3bd9255
4 changed files with 32 additions and 2 deletions

View File

@ -841,7 +841,8 @@ private:
justAddedExtraNewline = true;
}
if (config.dfmt_brace_style == BraceStyle.otbs
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if"))
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if")
&& !indents.topIs(tok!"foreach"))
{
write(" ");
index++;
@ -852,7 +853,7 @@ private:
&& !peekIs(tok!";") && !peekIs(tok!"{"))
{
index++;
if (indents.topIs(tok!"static"))
if (indents.topIsOneOf(tok!"static", tok!"foreach"))
indents.pop();
newline();
}

View File

@ -0,0 +1,11 @@
void main()
{
auto d = {
if (a)
foreach (b; c)
{
}
else
e();
};
}

9
tests/issue0314.d Normal file
View File

@ -0,0 +1,9 @@
void main()
{
auto d = {
if (a)
foreach (b; c) { }
else
e();
};
}

View File

@ -0,0 +1,9 @@
void main() {
auto d = {
if (a)
foreach (b; c) {
}
else
e();
};
}