http://d.puremagic.com/issues/show_bug.cgi?id=4256
Summary: Inner template mathods can't access this pointer
Product: D
Version: unspecified
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Simen Kjaeraas <[email protected]> 2010-05-31 05:52:19
PDT ---
struct bar {
int n;
void baz( ) {
void qux(T)() {
n = 3;
}
qux!int();
}
}
The above code barfs on 'n = 3;': "Error: need 'this' to access member n".
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------