[Issue 8701] New: One case of template type deduction
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Sep 20 10:16:14 PDT 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8701
Summary: One case of template type deduction
Product: D
Version: D2
Platform: x86
OS/Version: Windows
Status: NEW
Severity: enhancement
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: bearophile_hugs at eml.cc
--- Comment #0 from bearophile_hugs at eml.cc 2012-09-20 10:17:13 PDT ---
Is this supposed to work? If the answer is negative, maybe it's a good idea to
support this:
struct Foo(T) {}
void bar(Spam, T)(Spam!T y) {}
void main() {
Foo!int x;
bar(x);
}
DMD 2.061alpha gives:
temp.d(5): Error: template temp.bar does not match any function template
declaration
temp.d(5): Error: template temp.bar(Spam,T) cannot deduce template function
from argument types !()(Foo!(int))
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list