http://d.puremagic.com/issues/show_bug.cgi?id=11067
Summary: dmd segfaults on nested template instantiation (eg
A!(A!(int)) )
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: blocker
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2013-09-18 20:53:52 PDT ---
dmd -c main.d: segmentation fault
both v2.064-devel-66a38bb and v2.063.2
----
A!(A!(int)) detections;
struct A(T) if(is(T==int)) {}
struct A(T) if(is(T==A!(int))) {}
----
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------