[Issue 5504] New: Regression(2.051): Template member functions of a shared class don't compile
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Jan 29 13:01:27 PST 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5504
Summary: Regression(2.051): Template member functions of a
shared class don't compile
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Severity: regression
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: clugdbug at yahoo.com.au
--- Comment #0 from Don <clugdbug at yahoo.com.au> 2011-01-29 12:59:16 PST ---
shared class C
{
void foo(T)(T a) {}
}
void main()
{
auto c = new C;
c.foo(10);
}
---
Compiles in DMD 2.050. But 2.051 gives:
test0.d(9): Error: template test0.C.foo(T) does not match any function template
declaration
test0.d(9): Error: template test0.C.foo(T) cannot deduce template function from
argument types !()(int)
Doesn't happen if foo is a normal (non-template) function.
--
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