www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 3629] New: Immutable/shared disappear in circular module imports

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=3629

           Summary: Immutable/shared disappear in circular module imports
           Product: D
           Version: 2.036
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: tomeksowi gmail.com



PST ---
Testcase (should pass):
----------------------------------------------
module hello;
import test;

struct Strukt {
    Staly* s;
}
----------------------------------------------
module test;
import hello;

immutable struct Staly {
    int a;
}

void f_strukt(Strukt* stk) {
    f_staly(stk.s);    // ups!
}

void f_staly(Staly* s) { }
----------------------------------------------
Error: function test.f_staly (immutable(Staly)* s) is not callable using
argument types (Staly*)
Error: cannot implicitly convert expression ((*stk).s) of type Staly* to
immutable(Staly)*

Same story if Staly is shared.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 17 2009
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=3629


Andrej Mitrovic <andrej.mitrovich gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |andrej.mitrovich gmail.com
         Resolution|                            |WORKSFORME



19:00:07 PST ---
Works in 2.061+.

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