dmd/compiler/test/compilable/test8675.d
2022-07-09 18:53:07 +02:00

17 lines
199 B
D

class MyError : Error
{
this(string msg)
{
super(msg);
}
}
void foo() nothrow
{
throw new Error("Some error");
}
void bar() nothrow
{
throw new MyError("Some error");
}