mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
203 B
D
14 lines
203 B
D
// https://issues.dlang.org/show_bug.cgi?id=23431
|
|
// REQUIRED_ARGS: -lowmem
|
|
void test23431()
|
|
{
|
|
int a;
|
|
try
|
|
{
|
|
throw new Exception("test1");
|
|
a++;
|
|
}
|
|
finally
|
|
{
|
|
}
|
|
}
|