Thread overview |
---|
February 16, 2007 [Issue 969] New: 'this' needed for class member | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=969 Summary: 'this' needed for class member Product: D Version: 1.006 Platform: PC OS/Version: Windows Status: NEW Severity: major Priority: P2 Component: DMD AssignedTo: bugzilla@digitalmars.com ReportedBy: maxter@i.com.ua The compiler chokes on the code below with the error: need 'this' to access member a'. Should it? template TFoo(alias T) { void foo() { writefln(T); } } template TBar(alias T) { void bar() { TFoo!(T).foo(); } } class Test { int a; mixin TBar!(a); } void main() { } -- |
February 26, 2007 [Issue 969] 'this' needed for class member | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=969 thomas-dloop@kuehne.cn changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version|Windows |All ------- Comment #1 from thomas-dloop@kuehne.cn 2007-02-26 05:26 ------- One variation of the issue results in: template.c:2853: TemplateDeclaration* TemplateInstance::findTemplateDeclaration(Scope*): Assertion `s->parent' failed. Added to DStress as http://dstress.kuehne.cn/run/b/bug_template_2851_A.d http://dstress.kuehne.cn/run/b/bug_template_2851_B.d http://dstress.kuehne.cn/run/b/bug_template_2851_C.d -- |
August 13, 2007 [Issue 969] 'this' needed for class member | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=969 bugzilla@digitalmars.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME ------- Comment #2 from bugzilla@digitalmars.com 2007-08-12 22:30 ------- Works fine with DMD 1.021 / 2.003 P.S. When you say "one variation", please let me know which one. This is especially helpful when I cannot reproduce the problem. -- |
Copyright © 1999-2021 by the D Language Foundation