blob: cd523c02a61083127c494c83f83b77810b19cc13 [file] [log] [blame]
module imports.Other; // makes no difference if removed
import Same;
import core.stdc.stdio;
class Other : Same // segfault
// class Other : Same.Same //***UGLY ALERT*** but doesn't segfault
{
this()
{
printf("other\n");
}
}
int main()
{
new Other;
return 0;
}