Additionally, is there a way to force the linker to link a function in a class without an implementation with another that does have an implementation?
i.e. --- //module a; class Foo { void fun(); } import b: Foo; //module b; class Foo { void fun() { import std.stdio; writeln("!"); } } --- Or something like this? Thanks.