http://d.puremagic.com/issues/show_bug.cgi?id=10502
Summary: Can't get fullyQualifiedName of a templated struct
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Justinas Šneideris <[email protected]> 2013-06-29
09:57:06 PDT ---
void main()
{
struct Data(T)
{
T[16] stuff;
}
import std.traits;
auto name = fullyQualifiedName!(Data!long);
}
Currently this or anything similar does not work. Compiler complaints about
"forward reference of variable parentPrefix" in std.traits (300).
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------