dmd/compiler/test/compilable/test16348.d
2022-07-09 18:53:07 +02:00

13 lines
222 B
D

// EXTRA_SOURCES: imports/test16348.d
module mypackage.foo;
void bug()
{
// removing the if-else also removes the segfault
if (true) {}
else
{
import mypackage.bar;
auto b = bar();
}
}