d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test23431_minimal.d
blobc3ae19a21eb998b68d10fda8840ea0da9fc5983a
1 // https://issues.dlang.org/show_bug.cgi?id=23431
2 // REQUIRED_ARGS: -lowmem
3 module object;
5 alias string = immutable(char)[];
6 class Throwable { }
7 class Exception : Throwable
9 this(string )
14 class Error { }
16 // Needed to lower `new Exception("ice")` to it.
17 T _d_newclassT(T)()
18 if (is(T == class))
20 return null;
23 void test23431()
25 int a;
27 try
29 throw new Exception("test1");
30 a++;
32 finally