Fix Issue 508 (#511)

Fix Issue 508
merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
Brian Schott 2020-09-30 23:35:20 -07:00 committed by GitHub
parent eab4cac12f
commit 7659b1ae1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 1 deletions

View File

@ -9,8 +9,8 @@ module dfmt.formatter;
import dparse.lexer;
import dparse.parser;
import dparse.rollback_allocator;
import dfmt.config;
import dfmt.ast_info;
import dfmt.config;
import dfmt.indentation;
import dfmt.tokens;
import dfmt.wrapping;
@ -765,6 +765,7 @@ private:
}
else if (hasCurrent && (currentIs(tok!"@")
|| isBasicType(tokens[index].type)
|| currentIs(tok!"invariant")
|| currentIs(tok!"extern")
|| currentIs(tok!"identifier"))
&& !currentIsIndentedTemplateConstraint())

View File

@ -0,0 +1,7 @@
struct S
{
@safe invariant
{
assert(true);
}
}

1
tests/issue0508.d Normal file
View File

@ -0,0 +1 @@
struct S {@safe invariant { assert(true); }}

View File

@ -0,0 +1,5 @@
struct S {
@safe invariant {
assert(true);
}
}