Revisions <= 1073.
BindAllImportedFunctions fail (error code -19) for the following reasons:
module1
interface test1
{
void foo(test2@[] a);
}
interface test2
{
}
test1@ func()
{
return null;
}
module2
interface test1
{
void foo(test2@[] a);
}
interface test2
{
}
import test1@ func() from "module1";