mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
230 B
D
15 lines
230 B
D
// https://issues.dlang.org/show_bug.cgi?id=24061
|
|
|
|
class Exception2
|
|
{
|
|
this(string, int) {}
|
|
}
|
|
|
|
class E : Exception2
|
|
{
|
|
this(int i)
|
|
{
|
|
scope (success) assert(0, "assume nothrow");
|
|
super("hehe", 2);
|
|
}
|
|
}
|