module pind.samples.ja.special_functions.special_functions_2; import std.stdio; struct Test { static Test opCall() { writeln("A Test object is being constructed."); Test test; return test; } } void main() { auto test = Test(); }