[Issue 1728] alias hides mixin member func?
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Mon Jul 7 06:36:59 PDT 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1728
------- Comment #2 from davidl at 126.com 2008-07-07 08:36 -------
in the patch
+++ if (s -> isFuncDeclaration())
+++ {
+++ s->addMember(scope, parent, i);
+++ s->parent = this;
+++ }
+++ else
should be
+++ if (s -> isFuncDeclaration() && parent != NULL )
+++ {
+++ s->addMember(scope, parent, i);
+++ s->parent = this;
+++ }
+++ else
--
More information about the Digitalmars-d-bugs
mailing list