digitalmars.D.bugs - [Issue 5104] New: Forward reference error with member pure function S.fun(S s)
- d-bugmail puremagic.com (39/40) Oct 23 2010 http://d.puremagic.com/issues/show_bug.cgi?id=5104
- d-bugmail puremagic.com (12/12) Nov 08 2010 http://d.puremagic.com/issues/show_bug.cgi?id=5104
http://d.puremagic.com/issues/show_bug.cgi?id=5104
Summary: Forward reference error with member pure function
S.fun(S s)
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody puremagic.com
ReportedBy: rsinfu gmail.com
---
dmd trunk r727. Forward reference error happens if a member pure function of
struct S has a parameter of the type S:
--------------------
struct S
{
bool fun(S s) pure { return true; }
}
--------------------
% dmd -o- -c test.d
test.d(2): Error: struct test.S no size yet for forward reference
--------------------
The error happens in TypeStruct::hasPointers() called from
TypeFunction::semantic() around line 5011 of mtype.c:
--------------------
}
}
Type *t = fparam->type->toBasetype();
if (!t->hasPointers())
continue;
if (t->mod & (MODimmutable | MODwild))
continue;
--------------------
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 23 2010
http://d.puremagic.com/issues/show_bug.cgi?id=5104
Don <clugdbug yahoo.com.au> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |clugdbug yahoo.com.au
Resolution| |FIXED
Fixed DMD2.050
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Nov 08 2010








d-bugmail puremagic.com