[Issue 2722] New: ICE with variadic template parameters
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Mar 10 07:18:11 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2722
Summary: ICE with variadic template parameters
Product: D
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: andrei at metalanguage.com
This code:
int foo(Types...)(string a)
{
}
void main()
{
auto a = foo!(int, double)("s");
}
fails with:
dmd: template.c:798: MATCH
TemplateDeclaration::deduceFunctionTemplateMatch(Loc, Objects*, Expression*,
Expressions*, Objects*): Assertion `i < parameters->dim' failed.
Adding a return 0; inside foo fixes the problem. The compiler should issue an
error message giving information about what went wrong.
--
More information about the Digitalmars-d-bugs
mailing list