foo()@safe needs a space

This commit is contained in:
Andreas Zwinkau 2015-01-17 00:29:28 +01:00
parent de1f052b73
commit b8ca18ab24
3 changed files with 82 additions and 1 deletions

View File

@ -541,7 +541,8 @@ private:
else if (current.type == tok!")")
{
if (peekIs(tok!"identifier") || (index + 1 < tokens.length
&& isKeyword(tokens[index + 1].type)))
&& (isKeyword(tokens[index+1].type)
|| tokens[index+1].type == tok!"@")))
{
writeToken();
if (space_afterwards)

View File

@ -0,0 +1,31 @@
class U0 : Exception {
this() @safe pure nothrow { super("U0 error message"); }
}
class U1 : Exception {
this() @safe pure nothrow { super("U1 error message"); }
}
void foo() {
import std.stdio;
foreach (immutable i; 0 .. 2) {
try {
i.bar;
} catch (U0) {
"Function foo caught exception U0".writeln;
}
}
}
void bar(in int i) @safe pure {
i.baz;
}
void baz(in int i) @safe pure {
throw i ? new U1 : new U0;
}
void main() {
foo;
}

View File

@ -0,0 +1,49 @@
class U0 : Exception
{
this() @safe pure nothrow
{
super("U0 error message");
}
}
class U1 : Exception
{
this() @safe pure nothrow
{
super("U1 error message");
}
}
void foo()
{
import std.stdio;
foreach (immutable i; 0 .. 2)
{
try
{
i.bar;
}
catch(U0)
{
"Function foo caught exception U0".writeln;
}
}
}
void bar(in int i) @safe pure
{
i.baz;
}
void baz(in int i) @safe pure
{
throw i ? new U1 : new U0;
}
void main()
{
foo;
}