d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / dlangui_crash.d
blob36617f544c4771532edf130633e6129cc4f72353
1 // https://issues.dlang.org/show_bug.cgi?id=22365
3 class DrawableCache
5 Ref _nullDrawable;
7 this()
9 debug Log;
13 class DrawableCacheEmpty
15 Ref _nullDrawable;
17 this() {}
20 struct Ref
23 ~this()
28 void foo()
30 try
31 debug Log;
32 catch (Exception)
33 assert(false);