This commit is contained in:
Hackerpilot 2015-06-04 17:56:52 -07:00
parent 8889dff850
commit 97d405a4ab
4 changed files with 16 additions and 0 deletions

View File

@ -726,6 +726,8 @@ private:
write(" ");
break;
case tok!"enum":
if (peekBackIs(tok!"identifier"))
write(" ");
indents.push(tok!"enum");
writeToken();
if (!currentIs(tok!":"))

View File

@ -0,0 +1,7 @@
@Foo enum Bar
{
}
@foo class Baz
{
}

2
tests/issue0158.d Normal file
View File

@ -0,0 +1,2 @@
@Foo enum Bar {}
@foo class Baz {}

View File

@ -0,0 +1,5 @@
@Foo enum Bar {
}
@foo class Baz {
}