https://issues.dlang.org/show_bug.cgi?id=17610
Issue ID: 17610
Summary: core.demangle shows return type of template alias
parameter
Product: D
Version: D2
Hardware: x86_64
OS: Windows
Status: NEW
Severity: minor
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
>From the core.demangle unittests:
_D8bug1119234__T3fooS23_D8bug111924mainFZ3bariZ3fooMFZv
is demangled as
void bug11192.foo!(int bug11192.main().bar).foo()
but should oit the return type in the template argument:
void bug11192.foo!(bug11192.main().bar).foo()
--