blob: 36617f544c4771532edf130633e6129cc4f72353 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=22365
class DrawableCache
{
Ref _nullDrawable;
this()
{
debug Log;
}
}
class DrawableCacheEmpty
{
Ref _nullDrawable;
this() {}
}
struct Ref
{
~this()
{
}
}
void foo()
{
try
debug Log;
catch (Exception)
assert(false);
}