This commit is contained in:
Hackerpilot 2015-04-29 11:39:37 -07:00
parent e16c7bd465
commit b868dbcaa6
4 changed files with 21 additions and 1 deletions

View File

@ -404,7 +404,8 @@ private:
else else
write(" "); write(" ");
} }
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type))) else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)
|| currentIs(tok!"identifier")))
write(" "); write(" ");
} }

View File

@ -0,0 +1,7 @@
class Foo
{
@property Socket socket()
{
return this.socket;
}
}

7
tests/issue0148.d Normal file
View File

@ -0,0 +1,7 @@
class Foo
{
@property Socket socket()
{
return this.socket;
}
}

View File

@ -0,0 +1,5 @@
class Foo {
@property Socket socket() {
return this.socket;
}
}