https://issues.dlang.org/show_bug.cgi?id=19959
Rainer Schuetze <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|visuald |dmd --- Comment #5 from Rainer Schuetze <[email protected]> --- I think removing the duplicate template name can be done in error messages, too, e.g.: void foo(T)(T x) { } void main() { foo!int(); } test.d(8): Error: function `test.foo!int.foo(int x)` is not callable using argument types `()` test.d(8): missing argument for parameter #1: `int x` Changing this in Dsymbol.prettyChars() would probably propagate to the debug info. Reassigning to dmd... --
