Thread overview
[Issue 7403] New: Possible to instantiate forward referenced classes
Jan 31, 2012
dawg@dawgfoto.de
Jan 31, 2012
Jacob Carlborg
Jan 31, 2012
Walter Bright
January 31, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7403

           Summary: Possible to instantiate forward referenced classes
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: dawg@dawgfoto.de


--- Comment #0 from dawg@dawgfoto.de 2012-01-30 17:28:33 PST ---
class Forward;

void main()
{
    auto fwd = new Forward; // linker error
}

----

This should be detected at compile time.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
January 31, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7403


Jacob Carlborg <doob@me.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |doob@me.com


--- Comment #1 from Jacob Carlborg <doob@me.com> 2012-01-30 23:20:01 PST ---
Isn't it possible to have the implementation in a different object file?

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
January 31, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7403


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |INVALID


--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2012-01-31 01:19:04 PST ---
Jacob's right. This is not a bug. It's not conceptually different from calling a function marked as "extern".

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------