http://d.puremagic.com/issues/show_bug.cgi?id=2596
Summary: Variadic constructors don't compile
Product: D
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
The following code doesn't compile:
struct S
{
this(T...)(T args)
{
}
}
--
