module pind.samples.ja.templates_more.templates_more_6; import std.stdio; void func(T, string functionName = __FUNCTION__, string file = __FILE__, size_t line = __LINE__)(T parameter) { writefln("Instantiated at function %s at file %s, line %s.", functionName, file, line); } void main() { func(42); // ← 行は14 }