foo()@safe needs a space
This commit is contained in:
parent
de1f052b73
commit
b8ca18ab24
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue